mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-04 20:40:14 +01:00
Fix for bug #429849 - Returning single element rather than array
This commit is contained in:
parent
1ac69cf92a
commit
1cf25cccbe
@ -109,7 +109,7 @@
|
|||||||
for ($idx=0; $idx<count($security_equals); $idx++)
|
for ($idx=0; $idx<count($security_equals); $idx++)
|
||||||
{
|
{
|
||||||
$name = $this->id2name(intval($security_equals[$idx]));
|
$name = $this->id2name(intval($security_equals[$idx]));
|
||||||
$this->members = Array('account_id' => intval($security_equals[$idx]), 'account_name' => $name);
|
$this->members[] = Array('account_id' => intval($security_equals[$idx]), 'account_name' => $name);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->members;
|
return $this->members;
|
||||||
|
Loading…
Reference in New Issue
Block a user