aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorCesar G <prototech91@gmail.com>2015-10-22 10:05:01 -0700
committerCesar G <prototech91@gmail.com>2015-10-22 10:05:01 -0700
commit5576c9f3b907458081633d53d449faba2ae181d3 (patch)
tree0045cbad36ea885a87769ac4a695f79b46a48c5a /phpBB
parentfa44e98e72d7b0f8cdb6ca9f9d65127a1a368d05 (diff)
parent93208d597a7f0a3ff0be273a803fd1b2a84cace6 (diff)
downloadforums-5576c9f3b907458081633d53d449faba2ae181d3.tar
forums-5576c9f3b907458081633d53d449faba2ae181d3.tar.gz
forums-5576c9f3b907458081633d53d449faba2ae181d3.tar.bz2
forums-5576c9f3b907458081633d53d449faba2ae181d3.tar.xz
forums-5576c9f3b907458081633d53d449faba2ae181d3.zip
Merge pull request #3998 from Elsensee/ticket/14249
[ticket/14249] Fix online list order
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index b2b891be66..2d94bd14a7 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4270,7 +4270,7 @@ function obtain_users_online_string($online_users, $item_id = 0, $item = 'forum'
USERS_TABLE => 'u',
),
'WHERE' => $db->sql_in_set('u.user_id', $online_users['online_users']),
- 'ORDER BY' => 'u.username_clean ASC',
+ 'ORDER_BY' => 'u.username_clean ASC',
);
/**