diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 3e4dae0261..419f15d4b6 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,8 @@
+2010-04-22  Sergio Martin <sergio.martin@artica.es>
+
+       * godmode/groups/group_list.php: Avoid to show
+	the All group on the table
+
 2010-04-22  Sergio Martin <sergio.martin@artica.es>
 
        * include/functions_ui.php
diff --git a/pandora_console/godmode/groups/group_list.php b/pandora_console/godmode/groups/group_list.php
index e6d4f9d685..af45602933 100644
--- a/pandora_console/godmode/groups/group_list.php
+++ b/pandora_console/godmode/groups/group_list.php
@@ -147,7 +147,7 @@ $table->align = array ();
 $table->align[4] = 'center';
 $table->data = array ();
 
-$groups = get_user_groups ($config['id_user'], "AR");
+$groups = get_user_groups ($config['id_user'], "AR", false);
 
 foreach ($groups as $id_group => $group_name) {
 	$data = array ();