From aeeb4da5ae53dd9059f89a62302a508390eb699c Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Thu, 4 Nov 2010 18:28:55 +0000 Subject: [PATCH] 2010-11-04 Miguel de Dios * godmode/db/db_purge.php: fixed old value "1" for "All" groups. Fixes: #3102844 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3529 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/godmode/db/db_purge.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 8513023d74..530ed60be6 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-11-04 Miguel de Dios + + * godmode/db/db_purge.php: fixed old value "1" for "All" groups. + + Fixes: #3102844 + 2010-11-04 Miguel de Dios * extensions/users_connected.php: fixed call to operation function. diff --git a/pandora_console/godmode/db/db_purge.php b/pandora_console/godmode/db/db_purge.php index 8309389395..0f6902e1ef 100644 --- a/pandora_console/godmode/db/db_purge.php +++ b/pandora_console/godmode/db/db_purge.php @@ -155,7 +155,7 @@ if (isset($_POST["purgedb"])) { } # Select Agent for further operations. -$agents = get_group_agents (1, true); +$agents = get_group_agents (0, true); $agents[-1] = __('Choose agent'); $agents[0] = __('All agents');