mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Sort userlist in user administration
git-svn-id: file:///svn/phpbb/trunk@1029 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b2ce7e4e7f
commit
55ce5666b7
1 changed files with 3 additions and 2 deletions
|
@ -437,7 +437,8 @@ else
|
||||||
|
|
||||||
$sql = "SELECT user_id, username
|
$sql = "SELECT user_id, username
|
||||||
FROM " . USERS_TABLE . "
|
FROM " . USERS_TABLE . "
|
||||||
WHERE user_id <> " . ANONYMOUS;
|
WHERE user_id <> " . ANONYMOUS ."
|
||||||
|
ORDER BY username";
|
||||||
$u_result = $db->sql_query($sql);
|
$u_result = $db->sql_query($sql);
|
||||||
$user_list = $db->sql_fetchrowset($u_result);
|
$user_list = $db->sql_fetchrowset($u_result);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue