mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Should fix an array warning.
This commit is contained in:
parent
74248030b8
commit
d3deae6663
@ -263,7 +263,7 @@ class socalendar_ extends socalendar__
|
||||
}
|
||||
$member_groups = $GLOBALS['phpgw']->accounts->membership($this->user);
|
||||
@reset($member_groups);
|
||||
while(list($key,$group_info) = each($member_groups))
|
||||
while($member_groups != False && list($key,$group_info) = each($member_groups))
|
||||
{
|
||||
$member[] = $group_info['account_id'];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user