minor fix

This commit is contained in:
alejandro.campos@artica.es 2022-11-24 11:45:26 +01:00
parent 38259c9f8d
commit 081e004381
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ function profile_print_profile_table($id, $json_profile=false, $return=false)
if (empty($profile['tags'])) {
$data['tags'] = '';
} else {
if (is_array($profile['tags'] === false)) {
if (is_array($profile['tags']) === false) {
$tags_ids = explode(',', $profile['tags']);
} else {
$tags_ids = $profile['tags'];