diff options
author | Dylan Hardison <dylan@mozilla.com> | 2015-11-05 04:49:33 +0100 |
---|---|---|
committer | Dylan Hardison <dylan@mozilla.com> | 2015-11-05 04:49:33 +0100 |
commit | 67d9618771441215d8c431b81bf66acd4faa2aa1 (patch) | |
tree | b59aaec7c025ca245b55853bffb011c6be7c6bd2 /template | |
parent | c7a2cf03c480f65b1e4fa5d78d38c5776f8b0fef (diff) | |
download | bugzilla-67d9618771441215d8c431b81bf66acd4faa2aa1.tar.gz bugzilla-67d9618771441215d8c431b81bf66acd4faa2aa1.tar.xz |
Bug 1221851 - Parameter description for "password_complexity" is incorrect
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/params/auth.html.tmpl | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/template/en/default/admin/params/auth.html.tmpl b/template/en/default/admin/params/auth.html.tmpl index a6cb8d3b1..95db59022 100644 --- a/template/en/default/admin/params/auth.html.tmpl +++ b/template/en/default/admin/params/auth.html.tmpl @@ -137,12 +137,15 @@ "Set the complexity required for passwords. In all cases must the passwords " _ "be at least ${constants.USER_PASSWORD_MIN_LENGTH} characters long." _ "<ul><li>no_constraints - No complexity required.</li>" _ - "<li>mixed_letters - Passwords must contain at least one UPPER and one lower " _ - "case letter.</li>" _ - "<li>letters_numbers - Passwords must contain at least one UPPER and one " _ - "lower case letter and a number.</li>" _ - "<li>letters_numbers_specialchars - Passwords must contain at least one " _ - "UPPER or one lower case letter, a number and a special character.</li></ul>", + "<li>bmo - Passwords must meet at least three of the following conditions: " _ + "<ul>" _ + "<li>uppercase letters</li>" _ + "<li>lowercase letters</li>" _ + "<li>numbers</li>" _ + "<li>symbols</li>" _ + "<li>longer than 12 characters</li>" _ + "</ul></li>" _ + "</ul>", password_check_on_login => "If set, $terms.Bugzilla will check that the password meets the current " _ |