1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00

Revert "Optimizing ChatRoom::getUsers()"

This reverts commit f8193d1050.
This commit is contained in:
Tim Düsterhus 2012-05-19 20:49:50 +02:00
parent f8193d1050
commit f91a03aa32

View File

@ -135,7 +135,7 @@ public function getUsers() {
$userIDs = array(); $userIDs = array();
while ($userIDs[] = $stmt->fetchColumn()); while ($userIDs[] = $stmt->fetchColumn());
if (empty($userIDs)) return array(); if (!count($userIDs)) return array();
$sql = "SELECT $sql = "SELECT
u.*, u.*,
@ -150,11 +150,12 @@ public function getUsers() {
AND s.packageID = ? AND s.packageID = ?
) )
WHERE WHERE
u.userID IN (?) u.userID IN (".rtrim(str_repeat('?,', count($userIDs)), ',').")
ORDER BY ORDER BY
u.username ASC"; u.username ASC";
$stmt = WCF::getDB()->prepareStatement($sql); $stmt = WCF::getDB()->prepareStatement($sql);
$stmt->execute(array('away', $packageID, $userIDs)); array_unshift($userIDs, 'away', $packageID);
$stmt->execute($userIDs);
return $stmt->fetchObjects('\wcf\data\user\User'); return $stmt->fetchObjects('\wcf\data\user\User');
} }