Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
#3790 ACL with internal notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
kduret committed Sep 23, 2015
1 parent ae0964a commit 8b47d0f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@
$sql = sprintf($sql, "", "", "", "");
} else {
$sql = sprintf(
$sql,
", centreon_acl acl",
"AND acl.service_id = s.service_id AND acl.host_id = h.host_id ",
$sql,
", centreon_acl acl",
"AND acl.host_id = h.host_id"
"AND acl.service_id = s.service_id AND acl.host_id = h.host_id " . $obj->access->queryBuilder("AND", "acl.group_id", $obj->grouplistStr),
", centreon_acl acl",
"AND acl.host_id = h.host_id" . $obj->access->queryBuilder("AND", "acl.group_id", $obj->grouplistStr)
);
}
$res = $obj->DBC->query($sql);
Expand Down

0 comments on commit 8b47d0f

Please sign in to comment.