1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 03:34:04 +02:00

[ticket/16013] Allow admins to use disallowed username

PHPBB3-16013
This commit is contained in:
Jakub Senko
2019-05-24 15:17:18 +02:00
parent f6beabc593
commit 2b1102e372
2 changed files with 10 additions and 7 deletions

View File

@@ -855,7 +855,7 @@ class acp_users
$check_ary += array(
'username' => array(
array('string', false, $config['min_name_chars'], $config['max_name_chars']),
array('username', $user_row['username'])
array('username', $user_row['username'], true)
),
);
}