From eb0a093525695be0a43401acb8eba2305d5b4a47 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Mon, 19 Jan 2015 15:32:02 +0100 Subject: [PATCH] Fixed some errors on the data retrieving --- pandora_console/include/class/Tree.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index 9a965e09ad..06d0bcc248 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -626,11 +626,11 @@ class Tree { require_once($config['homedir']."/include/functions_groups.php"); // Return all the children groups - function __searchChildren(&$groups, $id) { + function __searchChildren(&$groups, $id, $server_id = false) { $children = array(); foreach ($groups as $key => $group) { if (isset($group['_parent_id_']) && $group['_parent_id_'] == $id) { - $children[] = __getProcessedItem($key, $groups); + $children[] = __getProcessedItem($key, $groups, $server_id); } } return $children; @@ -679,7 +679,7 @@ class Tree { if (isset($item['_monitors_alerts_fired_'])) $counters['alerts'] = $item['_monitors_alerts_fired_']; - $children = __searchChildren($items, $item['_id_']); + $children = __searchChildren($items, $item['_id_'], $server_id); if (!empty($children)) { $processed_item['children'] = $children;