From 78769be780f3565c05ad9caaaa57f07e96f742bd Mon Sep 17 00:00:00 2001 From: Linty Date: Wed, 30 Oct 2024 10:43:50 +0100 Subject: [PATCH] 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);