1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/14465] Remove setting for maximum password length

PHPBB3-14465
This commit is contained in:
Marc Alexander
2019-10-03 23:05:02 +02:00
parent 68c197fd60
commit 60bc949ba1
11 changed files with 61 additions and 23 deletions

View File

@@ -239,7 +239,7 @@ class add extends command
array('string', false, $this->config['min_name_chars'], $this->config['max_name_chars']),
array('username', '')),
'new_password' => array(
array('string', false, $this->config['min_pass_chars'], $this->config['max_pass_chars']),
array('string', false, $this->config['min_pass_chars'], 0),
array('password')),
'email' => array(
array('string', false, 6, 60),