forked from extern/egroupware
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++)
|
||||
{
|
||||
$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;
|
||||
|
Loading…
Reference in New Issue
Block a user