mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-06 15:45:34 +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:
parent
81be4479ab
commit
c385986201
@ -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':
|
||||
|
Loading…
x
Reference in New Issue
Block a user