mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 09:53:20 +01:00
suppress warning on searching for active members
This commit is contained in:
parent
e92e3694ee
commit
c4caefc9e9
@ -1090,7 +1090,7 @@ class accounts
|
|||||||
{
|
{
|
||||||
$instance = self::getInstance();
|
$instance = self::getInstance();
|
||||||
$account['members-active'] = array();
|
$account['members-active'] = array();
|
||||||
foreach($account['members'] as $id => $lid)
|
foreach((array)$account['members'] as $id => $lid)
|
||||||
{
|
{
|
||||||
if ($instance->is_active($id)) $account['members-active'][$id] = $lid;
|
if ($instance->is_active($id)) $account['members-active'][$id] = $lid;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user