From 5877eef17cf6f461373b29249682fba1c6198283 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Thu, 31 Dec 2015 12:35:07 +0100 Subject: [PATCH] Fixed in the function 'agents_get_group_agents' get agents with noACL flag is setted. TICKET: #3166 (cherry picked from commit a2b97333ce508cd087aa88420bf0cb3ebe3f411c) --- pandora_console/include/functions_agents.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 08bc9afac9..7a58656540 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -823,13 +823,18 @@ function agents_get_group_agents ($id_group = 0, $search = false, if ($childGroups) { if (is_array($id_group)) { foreach ($id_group as $parent) { - $id_group = array_merge($id_group, groups_get_id_recursive($parent, true)); + $id_group = array_merge($id_group, + groups_get_id_recursive($parent, true)); } } else { $id_group = groups_get_id_recursive($id_group, true); } - $id_group = array_keys(users_get_groups(false, "AR", true, false, (array)$id_group)); + + if (!$noACL) { + $id_group = array_keys( + users_get_groups(false, "AR", true, false, (array)$id_group)); + } } if (!empty($id_group)) {