Merge branch 'ent-9900-Problemas-a-la-hora-de-añadir-perfiles-con-tags-en-tyr-y-parama' into 'develop'

minor fix

See merge request artica/pandorafms!5289
This commit is contained in:
Rafael Ameijeiras 2022-11-24 11:46:14 +00:00
commit bca50dc51c
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'];