Minor fix

This commit is contained in:
Alejandro Gallardo Escobar 2015-03-09 19:37:29 +01:00
parent 756cf4cbf7
commit 4e76794f90
1 changed files with 0 additions and 10 deletions

View File

@ -1594,16 +1594,6 @@ class Tree {
// array_filter clean the empty elements
$processed_items = array_filter($processed_items_tmp);
}
// 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);
}
}
else {
$unmerged_items = array();