diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 8f4448bb5e..08224a8b6e 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-04-30 Sergio Martin + + * operation/agentes/group_view.php: Fixed the group + 1 problem. It was not showed + 2010-04-30 Sergio Martin * operation/snmpconsole/snmp_view.php: Improved the diff --git a/pandora_console/operation/agentes/group_view.php b/pandora_console/operation/agentes/group_view.php index 53a0bda4ee..075e85253c 100644 --- a/pandora_console/operation/agentes/group_view.php +++ b/pandora_console/operation/agentes/group_view.php @@ -76,8 +76,8 @@ echo "".__("Alert fired"); // For each valid group for this user, take data from agent and modules foreach ($groups as $id_group => $group_name) { - if ($id_group < 2) - continue; // Skip group 0 and 1 + if ($id_group < 1) + continue; // Skip group 0 // Get stats for this group $data = get_group_stats($id_group);