mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
Fixed PHP warning
This commit is contained in:
parent
d57e692c9a
commit
d879bf8c96
@ -381,7 +381,7 @@ It should use the values in the $this->data
|
||||
$sql = "select acl_appname, acl_rights from phpgw_acl where acl_location = 'run' and "
|
||||
. 'acl_account in ';
|
||||
$security = '('.$account_id;
|
||||
while($groups = each($memberships))
|
||||
while($groups = @each($memberships))
|
||||
{
|
||||
$group = each($groups);
|
||||
$security .= ','.$group[1]['account_id'];
|
||||
|
Loading…
Reference in New Issue
Block a user