mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +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 u.user_id = b.ban_userid
|
||||||
AND b.ban_userid <> 0
|
AND b.ban_userid <> 0
|
||||||
AND u.user_id <> ' . ANONYMOUS . '
|
AND u.user_id <> ' . ANONYMOUS . '
|
||||||
ORDER BY u.user_id ASC';
|
ORDER BY u.username ASC';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'ip':
|
case 'ip':
|
||||||
|
Reference in New Issue
Block a user