aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/user/add.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-10-03 23:05:02 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-10-03 23:05:02 +0200
commit60bc949ba1d5a6851e525868f69e997d4c8a2075 (patch)
tree2347cf99e6350e5040991ca37424a4cdc2d8ae67 /phpBB/phpbb/console/command/user/add.php
parent68c197fd6012b5435a29a288113b957e7957de59 (diff)
downloadforums-60bc949ba1d5a6851e525868f69e997d4c8a2075.tar
forums-60bc949ba1d5a6851e525868f69e997d4c8a2075.tar.gz
forums-60bc949ba1d5a6851e525868f69e997d4c8a2075.tar.bz2
forums-60bc949ba1d5a6851e525868f69e997d4c8a2075.tar.xz
forums-60bc949ba1d5a6851e525868f69e997d4c8a2075.zip
[ticket/14465] Remove setting for maximum password length
PHPBB3-14465
Diffstat (limited to 'phpBB/phpbb/console/command/user/add.php')
-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),