mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Error fixes
This commit is contained in:
parent
4e76794f90
commit
d8ead991c8
@ -1630,15 +1630,15 @@ class Tree {
|
|||||||
if (!empty($processed_items)) {
|
if (!empty($processed_items)) {
|
||||||
if (!empty($this->filter["groupID"])) {
|
if (!empty($this->filter["groupID"])) {
|
||||||
$result = self::extractItemWithID($processed_items, $this->filter["groupID"], "group");
|
$result = self::extractItemWithID($processed_items, $this->filter["groupID"], "group");
|
||||||
|
$processed_items = array($result);
|
||||||
}
|
}
|
||||||
else if (!empty($this->filter["tagID"])) {
|
else if (!empty($this->filter["tagID"])) {
|
||||||
$result = self::extractItemWithID($processed_items, $this->filter["tagID"], "tag");
|
$result = self::extractItemWithID($processed_items, $this->filter["tagID"], "tag");
|
||||||
|
$processed_items = array($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($result === false)
|
if ($processed_items === false)
|
||||||
$processed_items = array();
|
$processed_items = array();
|
||||||
else
|
|
||||||
$processed_items = array($result);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Agents
|
// Agents
|
||||||
@ -1732,11 +1732,10 @@ class Tree {
|
|||||||
// groupID filter. To access the view from tactical views f.e.
|
// groupID filter. To access the view from tactical views f.e.
|
||||||
if (!empty($processed_items) && !empty($this->filter['groupID'])) {
|
if (!empty($processed_items) && !empty($this->filter['groupID'])) {
|
||||||
$result = self::extractItemWithID($processed_items, $this->filter['groupID'], "group");
|
$result = self::extractItemWithID($processed_items, $this->filter['groupID'], "group");
|
||||||
|
$processed_items = array($result);
|
||||||
|
|
||||||
if ($result === false)
|
if ($processed_items === false)
|
||||||
$processed_items = array();
|
$processed_items = array();
|
||||||
else
|
|
||||||
$processed_items = array($result);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Agents
|
// Agents
|
||||||
|
Loading…
x
Reference in New Issue
Block a user