mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-08 22:39:57 +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 "
|
$sql = "select acl_appname, acl_rights from phpgw_acl where acl_location = 'run' and "
|
||||||
. 'acl_account in ';
|
. 'acl_account in ';
|
||||||
$security = '('.$account_id;
|
$security = '('.$account_id;
|
||||||
while($groups = each($memberships))
|
while($groups = @each($memberships))
|
||||||
{
|
{
|
||||||
$group = each($groups);
|
$group = each($groups);
|
||||||
$security .= ','.$group[1]['account_id'];
|
$security .= ','.$group[1]['account_id'];
|
||||||
|
Loading…
Reference in New Issue
Block a user