From 93208d597a7f0a3ff0be273a803fd1b2a84cace6 Mon Sep 17 00:00:00 2001 From: Oliver Schramm Date: Wed, 21 Oct 2015 21:51:43 +0200 Subject: [PATCH] [ticket/14249] Fix online list order PHPBB3-14249 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', ); /**