function acl_remove_user in ACL 5
Same name and namespace in other branches
- 8 acl.module \acl_remove_user()
- 6 acl.module \acl_remove_user()
- 7 acl.module \acl_remove_user()
Remove the specified UID from an ACL.
File
- ./
acl.module, line 43 - acl.module
Code
function acl_remove_user($acl_id, $uid) {
db_query("DELETE FROM {acl_user} WHERE acl_id = %d AND uid = %d ", $acl_id, $uid);
}