Fixed a PHP syntax error

This commit is contained in:
Alejandro Gallardo Escobar 2015-03-23 21:02:06 +01:00
parent e3c1acfcf4
commit 857d9e2e11

View File

@ -1311,7 +1311,7 @@ class Tree {
$module["showGraphs"] = 0; $module["showGraphs"] = 0;
// ACL // ACL
if (!empty($group_id) { if (!empty($group_id)) {
$module["showGraphs"] = (int) check_acl($config['id_user'], $group_id, "RR"); $module["showGraphs"] = (int) check_acl($config['id_user'], $group_id, "RR");
} }