1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 06:51:33 +02:00

[ticket/10737] Set the username as the input value instead of redirecting.

PHPBB3-10737
This commit is contained in:
Cesar G
2014-04-08 05:33:24 -07:00
parent 333a18d846
commit 3fec8dff2c
2 changed files with 7 additions and 6 deletions

View File

@@ -996,8 +996,9 @@ switch ($mode)
{
$user_list[] = array(
'user_id' => (int) $row['user_id'],
'username' => $row['username'],
'result' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']),
'result' => $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']),
);
}
$db->sql_freeresult($result);