From 8c2a19fc530670d91953b5e7453b6993822a3f7d Mon Sep 17 00:00:00 2001 From: Vanessa Gil Date: Thu, 20 Nov 2014 15:33:28 +0100 Subject: [PATCH] Fixed bug in event list. --- pandora_console/include/functions_tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_tags.php b/pandora_console/include/functions_tags.php index 26857870f8..5d1deec4f3 100644 --- a/pandora_console/include/functions_tags.php +++ b/pandora_console/include/functions_tags.php @@ -1235,7 +1235,7 @@ function tags_checks_event_acl($id_user, $id_group, $access, $tags = array(), $c $tags_user = tags_get_acl_tags($id_user, $id_group, $access, 'data', '', '', false, $childrens_ids); // If there are wrong parameters or fail ACL check, return false - if($tags_user === ERR_WRONG_PARAMETERS || $acls === ERR_ACL) { + if($tags_user === ERR_WRONG_PARAMETERS || $tags_user === ERR_ACL) { return false; }