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

This commit is contained in:
Vanessa Gil 2015-01-30 15:54:36 +01:00
parent 282c4584fb
commit 80c96e9595
1 changed files with 1 additions and 1 deletions

View File

@ -1417,7 +1417,7 @@ function tags_checks_event_acl($id_user, $id_group, $access, $tags = array(), $c
$group_ids = implode(',', $childrens_ids);
}
$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_grupo IN ($group_ids)";
$has_perm = db_get_value_sql ($sql);