mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
Order of username in username search was missing
git-svn-id: file:///svn/phpbb/trunk@1408 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
bc5d1514d4
commit
ce185663d4
1 changed files with 2 additions and 1 deletions
|
@ -886,7 +886,8 @@ function username_search($search_match, $is_inline_review = 0, $default_list = "
|
|||
|
||||
$sql = "SELECT username
|
||||
FROM " . USERS_TABLE . "
|
||||
WHERE username LIKE '$username_search'";
|
||||
WHERE username LIKE '$username_search'
|
||||
ORDER BY username";
|
||||
if( !$result = $db->sql_query($sql) )
|
||||
{
|
||||
message_die(GENERAL_ERROR, "Couldn't obtain search results", "", __LINE__, __FILE__, $sql);
|
||||
|
|
Loading…
Add table
Reference in a new issue