diff --git a/pandora_console/include/functions_groups.php b/pandora_console/include/functions_groups.php index 697e6fd609..4de4fc2e35 100644 --- a/pandora_console/include/functions_groups.php +++ b/pandora_console/include/functions_groups.php @@ -1189,6 +1189,8 @@ function groups_agent_total($group_array) { WHERE tagente.disabled = 0 AND id_grupo IN $group_clause"); + + return $count > 0 ? $count : 0; } @@ -1210,9 +1212,10 @@ function groups_agent_ok ($group_array) { FROM tagente WHERE tagente.disabled = 0 AND normal_count = total_count - AND (notinit_count != 0) AND id_grupo IN $group_clause"); + + return $count > 0 ? $count : 0; } @@ -1627,6 +1630,7 @@ function groups_get_tree(&$groups, $parent = false) { return $return; } + function groups_get_all_hierarchy_group ($id_group, $hierarchy = array()) { global $config; diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php index de0ab8fb88..17f0ea5bfe 100755 --- a/pandora_console/include/functions_treeview.php +++ b/pandora_console/include/functions_treeview.php @@ -619,6 +619,8 @@ function treeview_getData ($type) { return array (); } + + $fgroups = array(); foreach ($full_groups as $fg) { @@ -830,7 +832,7 @@ function treeview_getData ($type) { $list = array(); } - array_push($list, array('id_mg' => 0, 'name' => 'Not assigned')); + array_push($list, array('id_mg' => 0, 'name' => 'Not assigned')); break; case 'policies':