1
0
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:
Graham Eames 2006-05-14 15:07:43 +00:00
parent 81be4479ab
commit c385986201

View File

@ -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':