mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Properly set $userID as key in Room::getUsers()
NewMessagesPage relies on the keys being userIDs for user storage loading.
This commit is contained in:
parent
dde862d5a6
commit
d1a44417e6
@ -179,9 +179,9 @@ public function getUsers() {
|
||||
$userList->readObjects();
|
||||
$users = $userList->getObjects();
|
||||
|
||||
foreach ($users as $user) {
|
||||
foreach ($users as $userID => $user) {
|
||||
if (!isset(self::$users[$user->chatRoomID])) self::$users[$user->chatRoomID] = array();
|
||||
self::$users[$user->chatRoomID][] = $user;
|
||||
self::$users[$user->chatRoomID][$userID] = $user;
|
||||
}
|
||||
}
|
||||
if (!isset(self::$users[$this->roomID])) self::$users[$this->roomID] = array();
|
||||
|
Loading…
Reference in New Issue
Block a user