Fixed bug when checking acls to delete events. Ticket #1737.

This commit is contained in:
Vanessa Gil 2015-01-30 15:47:57 +01:00
parent 10993ef0f5
commit 93386c458f
1 changed files with 1 additions and 1 deletions

View File

@ -1328,7 +1328,7 @@ function tags_checks_event_acl($id_user, $id_group, $access, $tags = array(), $c
$group_ids = implode(',', $childrens_ids); $group_ids = implode(',', $childrens_ids);
} }
$sql = "SELECT id_usuario FROM tusuario_perfil $sql = "SELECT id_usuario FROM tusuario_perfil
WHERE id_usuario = '".$config["id_user"]."' AND tags = $tags_user WHERE id_usuario = '".$config["id_user"]."' AND tags = '$tags_user'
AND id_perfil IN (SELECT id_perfil FROM tperfil WHERE ".get_acl_column($access)."=1) AND id_perfil IN (SELECT id_perfil FROM tperfil WHERE ".get_acl_column($access)."=1)
AND id_grupo IN ($group_ids)"; AND id_grupo IN ($group_ids)";
$has_perm = db_get_value_sql ($sql); $has_perm = db_get_value_sql ($sql);