Fix for bug #429849 - Returning single element rather than array

This commit is contained in:
skeeter 2001-06-03 17:19:02 +00:00
parent 1ac69cf92a
commit 1cf25cccbe

View File

@ -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;