aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-10-07 18:31:14 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-10-07 18:31:14 +0200
commit4cda76b5c09da525a01c80daa03f5d574f601ad5 (patch)
tree178f6a660f91be4516eb4f26d9e79443f583b658 /phpBB/phpbb/console
parentf7e51ca875ebdae6cd90034f0aae9475eb9defb2 (diff)
parent60bc949ba1d5a6851e525868f69e997d4c8a2075 (diff)
downloadforums-4cda76b5c09da525a01c80daa03f5d574f601ad5.tar
forums-4cda76b5c09da525a01c80daa03f5d574f601ad5.tar.gz
forums-4cda76b5c09da525a01c80daa03f5d574f601ad5.tar.bz2
forums-4cda76b5c09da525a01c80daa03f5d574f601ad5.tar.xz
forums-4cda76b5c09da525a01c80daa03f5d574f601ad5.zip
Merge pull request #5702 from marc1706/ticket/14465
[ticket/14465] Remove setting for maximum password length
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r--phpBB/phpbb/console/command/user/add.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/user/add.php b/phpBB/phpbb/console/command/user/add.php
index c60a059251..303216a93d 100644
--- a/phpBB/phpbb/console/command/user/add.php
+++ b/phpBB/phpbb/console/command/user/add.php
@@ -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),