mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-25 15:29:17 +01:00
removed trailing ) from delete
This commit is contained in:
parent
877985274a
commit
76ba0c8b53
@ -85,7 +85,7 @@
|
|||||||
function delete($app, $location, $id, $id_type){
|
function delete($app, $location, $id, $id_type){
|
||||||
$sql = "delete from phpgw_acl where acl_appname='".$app."'";
|
$sql = "delete from phpgw_acl where acl_appname='".$app."'";
|
||||||
$sql .= " and acl_location ='".$location."' and ";
|
$sql .= " and acl_location ='".$location."' and ";
|
||||||
$sql .= " acl_account_type = '".$id_type."' and acl_account = ".$id.")";
|
$sql .= " acl_account_type = '".$id_type."' and acl_account = ".$id;
|
||||||
$this->db->query($sql ,__LINE__,__FILE__);
|
$this->db->query($sql ,__LINE__,__FILE__);
|
||||||
return True;
|
return True;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user