mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/13713] Fix SELECT DISTINCT query for team usernames
PHPBB3-13713
This commit is contained in:
parent
3c27b47236
commit
1f8e91cf11
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class team extends base_user
|
|||
],
|
||||
'WHERE' => 'ug.group_id = t.group_id AND ug.user_id = u.user_id AND ug.user_pending = 0
|
||||
AND ' . $this->db->sql_in_set('u.user_type', [USER_NORMAL, USER_FOUNDER]),
|
||||
'ORDER_BY' => 'u.username'
|
||||
'ORDER_BY' => 'u.username_clean'
|
||||
]);
|
||||
return $query;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue