diff options
author | lpsolit%gmail.com <> | 2009-11-24 01:00:47 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-11-24 01:00:47 +0100 |
commit | b6b553c3afadea88c74d408cd5d637b5f47540d0 (patch) | |
tree | b5bdda3e7486e560a5a358bb89577cc45615b4aa /Bugzilla | |
parent | 2296f779df4debf3d7aa3fc1f2b648e2c929e061 (diff) | |
download | bugzilla-b6b553c3afadea88c74d408cd5d637b5f47540d0.tar.gz bugzilla-b6b553c3afadea88c74d408cd5d637b5f47540d0.tar.xz |
Bug 524368: Increase the value of USER_PASSWORD_MIN_LENGTH - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Constants.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 6446c7e3e..0bce3ed2f 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -228,7 +228,7 @@ use constant AUTH_DISABLED => 4; use constant AUTH_NO_SUCH_USER => 5; # The minimum length a password must have. -use constant USER_PASSWORD_MIN_LENGTH => 3; +use constant USER_PASSWORD_MIN_LENGTH => 6; use constant LOGIN_OPTIONAL => 0; use constant LOGIN_NORMAL => 1; |