diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/page_header.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php index 50c2801f6c..1572473695 100644 --- a/phpBB/includes/page_header.php +++ b/phpBB/includes/page_header.php @@ -94,7 +94,7 @@ $sql = "SELECT u.username, u.user_id, u.user_allow_viewonline, s.session_logged_ WHERE u.user_id = s.session_user_id AND ( s.session_time >= ".( time() - 300 ) . " OR u.user_session_time >= " . ( time() - 300 ) . " ) - ORDER BY u.user_session_time DESC"; + ORDER BY u.username ASC"; $result = $db->sql_query($sql); if(!$result) { @@ -379,4 +379,4 @@ header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); $template->pparse("overall_header"); -?>
\ No newline at end of file +?> |