From 81e16bfad1d5c42a52c2cfc44f479f8822e40b4e Mon Sep 17 00:00:00 2001 From: flashwave Date: Mon, 31 Dec 2018 02:41:53 +0100 Subject: [PATCH] Sort last online users by time rather than random. --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 378a740c..52b16205 100644 --- a/public/index.php +++ b/public/index.php @@ -88,7 +88,7 @@ $onlineUsers = cache_get('index:online_users:v1', function () { LEFT JOIN `msz_roles` as r ON r.`role_id` = u.`display_role` WHERE u.`user_active` >= DATE_SUB(NOW(), INTERVAL 5 MINUTE) - ORDER BY RAND() + ORDER BY u.`user_active` DESC LIMIT 104 ')->fetchAll(PDO::FETCH_ASSOC); }, 30);