From 95bf9dddebefd2ca6268deafc2513d46d0330e94 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Fri, 23 Apr 2010 11:58:30 +0000 Subject: [PATCH] 2010-04-23 Sergio Martin * general/ui/agents_list.php: Changed the all group condition from 1 to 0 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2602 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/general/ui/agents_list.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index c0c3018213..6919a9355d 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-04-23 Sergio Martin + + * general/ui/agents_list.php: Changed the all group + condition from 1 to 0 + 2010-04-23 Sergio Martin * godmode/reporting/reporting_builder.php: Changed the diff --git a/pandora_console/general/ui/agents_list.php b/pandora_console/general/ui/agents_list.php index 470b4052fe..58bea38625 100644 --- a/pandora_console/general/ui/agents_list.php +++ b/pandora_console/general/ui/agents_list.php @@ -24,7 +24,7 @@ if (is_ajax ()) { $filter = str_replace ("\\\"", "\"", $_POST['filter']); $filter = json_decode ($filter, true); $id_group = (int) get_parameter ('id_group'); - if ($id_group > 1 && give_acl ($config['id_user'], $id_group, $access)) + if ($id_group > 0 && give_acl ($config['id_user'], $id_group, $access)) $filter['id_grupo'] = $id_group; else $filter['id_grupo'] = array_keys (get_user_groups (false, $access));