mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
Display bans in order of username not user_id so that you stand a chance of finding someone in a long list :)
git-svn-id: file:///svn/phpbb/trunk@5913 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -123,7 +123,7 @@ class acp_ban
|
||||
AND u.user_id = b.ban_userid
|
||||
AND b.ban_userid <> 0
|
||||
AND u.user_id <> ' . ANONYMOUS . '
|
||||
ORDER BY u.user_id ASC';
|
||||
ORDER BY u.username ASC';
|
||||
break;
|
||||
|
||||
case 'ip':
|
||||
|
Reference in New Issue
Block a user