From bf70b9bfba83e250806b1fc72b3dc3d4192c3d45 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Thu, 5 Mar 2015 19:45:30 +0100 Subject: [PATCH] Minor fix --- pandora_console/include/functions_tags.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pandora_console/include/functions_tags.php b/pandora_console/include/functions_tags.php index 11ffb357de..4f1529e0c9 100644 --- a/pandora_console/include/functions_tags.php +++ b/pandora_console/include/functions_tags.php @@ -616,12 +616,9 @@ function tags_get_acl_tags($id_user, $id_group, $access = 'AR', $return_mode = ' } } - if ((int)$id_group === 0) { - $id_group = array_keys(users_get_groups($id_user, $access, false)); - - if (empty($id_group)) { - return ERR_WRONG_PARAMETERS; - }$id_group = array(); + if ($id_group == 0) { + // Don't filter + $id_group = array(); } elseif (empty($id_group)) { return ERR_WRONG_PARAMETERS;