Commit 4c8b9aef authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(objects): Fix ACL check on filter attributes

Showing with 1 addition and 1 deletion
+1 -1
...@@ -113,7 +113,7 @@ class objects ...@@ -113,7 +113,7 @@ class objects
} }
foreach ($partialFilterAcls as $partialFilterAcl) { foreach ($partialFilterAcls as $partialFilterAcl) {
if (strpos($ui->get_permissions($key, $partialFilterAcl[0], $partialFilterAcl[1]), 'r') === FALSE) { if (strpos($ui->get_permissions($key, $partialFilterAcl[0], $partialFilterAcl[1]), 'r') === FALSE) {
continue; continue 2;
} }
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment