Private GIT

Skip to content
Snippets Groups Projects
Commit f6bc0236 authored by Kevin Duret's avatar Kevin Duret
Browse files

#5189 fix access group display

parent 52616a6d
Branches
Tags
No related merge requests found
...@@ -98,9 +98,10 @@ if (($o == "c" || $o == "w") && $acl_group_id) { ...@@ -98,9 +98,10 @@ if (($o == "c" || $o == "w") && $acl_group_id) {
. 'AND ar.locked = 0 ' . 'AND ar.locked = 0 '
. 'AND argr.acl_group_id = "' . $acl_group_id . '" '; . 'AND argr.acl_group_id = "' . $acl_group_id . '" ';
$DBRESULT = $pearDB->query($query); $DBRESULT = $pearDB->query($query);
while($data = $DBRESULT->fetchRow()) { for ($i = 0; $data = $DBRESULT->fetchRow(); $i++) {
$group["resourceAccess"][$i] = $data["acl_res_id"]; $group["resourceAccess"][$i] = $data["acl_res_id"];
} }
$DBRESULT->free(); $DBRESULT->free();
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment