diff options
author | Dylan Hardison <dylan@mozilla.com> | 2015-11-04 23:53:41 +0100 |
---|---|---|
committer | Dylan Hardison <dylan@mozilla.com> | 2015-11-04 23:53:41 +0100 |
commit | c7a2cf03c480f65b1e4fa5d78d38c5776f8b0fef (patch) | |
tree | d9680c827a0e77450efa160a8891aea02ad229b5 /Bugzilla | |
parent | 3238e2d9fcd532807847556514c0519fa0869b14 (diff) | |
download | bugzilla-c7a2cf03c480f65b1e4fa5d78d38c5776f8b0fef.tar.gz bugzilla-c7a2cf03c480f65b1e4fa5d78d38c5776f8b0fef.tar.xz |
Bug 1177911 - Determine and implement better password requirements for BMO
Revised: default password rules should be no_constraints.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Config/Auth.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Config/Auth.pm b/Bugzilla/Config/Auth.pm index ac5394f04..301c852da 100644 --- a/Bugzilla/Config/Auth.pm +++ b/Bugzilla/Config/Auth.pm @@ -133,7 +133,7 @@ sub get_param_list { name => 'password_complexity', type => 's', choices => [ 'no_constraints', 'bmo' ], - default => 'bmo', + default => 'no_constraints', checker => \&check_multi }, |