From 081e004381379e423f6d0f0a6ca3f6426da02849 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Thu, 24 Nov 2022 11:45:26 +0100 Subject: [PATCH] minor fix --- pandora_console/include/functions_profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_profile.php b/pandora_console/include/functions_profile.php index ad052dadbd..94127b5d2f 100644 --- a/pandora_console/include/functions_profile.php +++ b/pandora_console/include/functions_profile.php @@ -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'];