Fixed confilcts with onlyOneGroup

(cherry picked from commit 6d2c1c126e)
This commit is contained in:
fermin831 2016-08-09 10:22:54 +02:00
parent 27a5e07cf9
commit 35f21def2c
1 changed files with 2 additions and 2 deletions

View File

@ -1763,7 +1763,7 @@ function check_acl($id_user, $id_group, $access, $onlyOneGroup = false) {
}
$parents_id = array($id_group);
if ($id_group != 0 && $onlyOneGroup == false) {
if ($id_group != 0 && $onlyOneGroup !== true) {
$group = db_get_row_filter('tgrupo', array('id_grupo' => $id_group));
$parents = groups_get_parents($group['parent'], true);
@ -1774,7 +1774,7 @@ function check_acl($id_user, $id_group, $access, $onlyOneGroup = false) {
// TODO: To reduce this querys in one adding the group condition if necessary (only one line is different)
//Joined multiple queries into one. That saves on the query overhead and query cache.
if ($id_group == 0 && $onlyOneGroup == false) {
if ($id_group == 0 && $onlyOneGroup !== true) {
$query = sprintf("SELECT tperfil.incident_view, tperfil.incident_edit,
tperfil.incident_management, tperfil.agent_view,
tperfil.agent_edit, tperfil.alert_edit,