mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-29 13:00:26 +02:00
[ticket/16657] Properly decode usernames in member list live-search
PHPBB3-16657
This commit is contained in:
@@ -986,7 +986,7 @@ switch ($mode)
|
||||
{
|
||||
$user_list[] = array(
|
||||
'user_id' => (int) $row['user_id'],
|
||||
'result' => $row['username'],
|
||||
'result' => htmlspecialchars_decode($row['username']),
|
||||
'username_full' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']),
|
||||
'display' => get_username_string('no_profile', $row['user_id'], $row['username'], $row['user_colour']),
|
||||
);
|
||||
|
Reference in New Issue
Block a user