diff --git a/GameEngine/Database.php b/GameEngine/Database.php index 384b8c89..81caa057 100755 --- a/GameEngine/Database.php +++ b/GameEngine/Database.php @@ -1060,7 +1060,7 @@ class MYSQLi_DB { } function getAdminLog() { - $q = "SELECT id,user,log,time from " . TB_PREFIX . "admin_log where id != 0 ORDER BY id ASC"; + $q = "SELECT id,user,log,time from " . TB_PREFIX . "admin_log where id != 0 ORDER BY id DESC"; $result = mysqli_query($this->dblink,$q); return $this->mysqli_fetch_all($result); }