From d18d25b3d12d81a1e1e16b41d4918943db94be80 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 9 Mar 2020 23:51:01 +0000 Subject: [PATCH] most recent users first --- ext/user/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/user/main.php b/ext/user/main.php index 7dd67093..8b75113f 100644 --- a/ext/user/main.php +++ b/ext/user/main.php @@ -54,7 +54,7 @@ class UserTable extends Table new DateColumn("joindate", "Join Date"), new UserActionColumn(), ]); - $this->order_by = ["name"]; + $this->order_by = ["id DESC"]; $this->table_attrs = ["class" => "zebra"]; } }