1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

Merge pull request #5601 from senky/ticket/16013

[ticket/16013] Allow admins to use disallowed username
This commit is contained in:
Marc Alexander
2019-07-27 16:20:53 +02:00
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)
),
);
}