no assoc index here, makes tests pass again

This commit is contained in:
Arthur Schiwon 2013-08-19 15:53:20 +02:00
parent 0f7fad7166
commit 64c0e5d807
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Group {
foreach ($userIds as $userId) { foreach ($userIds as $userId) {
$user = $this->userManager->get($userId); $user = $this->userManager->get($userId);
if(!is_null($user)) { if(!is_null($user)) {
$users[$userId] = $user; $users[] = $user;
} }
} }
$this->users = $users; $this->users = $users;