mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
also deleting the memberships of a group
This commit is contained in:
parent
4583477a60
commit
bb4c9f46d4
@ -780,6 +780,8 @@
|
|||||||
if ((int) $account_id)
|
if ((int) $account_id)
|
||||||
{
|
{
|
||||||
$this->db->query('DELETE FROM phpgw_acl WHERE acl_account='.(int)$account_id,__LINE__,__FILE__);
|
$this->db->query('DELETE FROM phpgw_acl WHERE acl_account='.(int)$account_id,__LINE__,__FILE__);
|
||||||
|
// delete all memberships in account_id (if it is a group)
|
||||||
|
$this->db->query("DELETE FROM phpgw_acl WHERE acl_appname='phpgw_group' AND acl_location='".(int)$account_id."'",__LINE__,__FILE__);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} //end of acl class
|
} //end of acl class
|
||||||
|
Loading…
Reference in New Issue
Block a user