From 5cb2585be998ea56c12f65993894f91e051f45bb Mon Sep 17 00:00:00 2001 From: Linty Date: Wed, 30 Oct 2024 10:45:16 +0100 Subject: [PATCH] (cp 78769be78) fixes #2259 order by activity_id instead of occured_on --- admin/maintenance_sys.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/maintenance_sys.php b/admin/maintenance_sys.php index ffc9fba6f..5fcd0705e 100644 --- a/admin/maintenance_sys.php +++ b/admin/maintenance_sys.php @@ -36,7 +36,7 @@ if (is_webmaster()) FROM '.ACTIVITY_TABLE.' LEFT JOIN '.USERS_TABLE.' ON performed_by = '.$conf['user_fields']['id'].' WHERE object = \'system\' - ORDER BY occured_on DESC'; + ORDER BY activity_id DESC'; // Format our data for frontend $result = pwg_query($query);