Error fixes

This commit is contained in:
Alejandro Gallardo Escobar 2015-03-09 20:19:55 +01:00
parent 4e76794f90
commit d8ead991c8
1 changed files with 5 additions and 6 deletions

View File

@ -1630,15 +1630,15 @@ class Tree {
if (!empty($processed_items)) {
if (!empty($this->filter["groupID"])) {
$result = self::extractItemWithID($processed_items, $this->filter["groupID"], "group");
$processed_items = array($result);
}
else if (!empty($this->filter["tagID"])) {
$result = self::extractItemWithID($processed_items, $this->filter["tagID"], "tag");
$processed_items = array($result);
}
if ($result === false)
if ($processed_items === false)
$processed_items = array();
else
$processed_items = array($result);
}
}
// Agents
@ -1732,11 +1732,10 @@ class Tree {
// groupID filter. To access the view from tactical views f.e.
if (!empty($processed_items) && !empty($this->filter['groupID'])) {
$result = self::extractItemWithID($processed_items, $this->filter['groupID'], "group");
if ($result === false)
$processed_items = array();
else
$processed_items = array($result);
if ($processed_items === false)
$processed_items = array();
}
}
// Agents