From 89c307bd5de20d33d825a6e2209ae037c38b3f9d Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Wed, 11 Mar 2015 21:24:58 +0100 Subject: [PATCH] Fixed a status filter error --- pandora_console/include/class/Tree.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index afbaab246d..d6df707d7d 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -228,7 +228,8 @@ class Tree { // Agent status filter $agent_status_filter = ""; if (isset($this->filter['statusAgent']) - && $this->filter['statusAgent'] != AGENT_STATUS_ALL) { + && $this->filter['statusAgent'] != AGENT_STATUS_ALL + && !$this->strictACL) { $agent_status_filter = $this->getAgentStatusFilter($this->filter['statusAgent']); }