diff options
author | Simon Green <sgreen@redhat.com> | 2013-08-07 07:16:46 +0200 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2013-08-07 07:16:46 +0200 |
commit | 2e36c78ecde44d09bb685bde52e1ef0e3ba8afd2 (patch) | |
tree | 764766f9f1b7ce883b87047c56287484373f0a03 /template | |
parent | 9ca3f8b5b6474b66b5e767fcb747ce1336c08339 (diff) | |
download | bugzilla-2e36c78ecde44d09bb685bde52e1ef0e3ba8afd2.tar.gz bugzilla-2e36c78ecde44d09bb685bde52e1ef0e3ba8afd2.tar.xz |
Bug 897264 - letters_numbers_specialchars password restriction is incorrect
r=LpSolit, a=sgreen
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 65fb4f18a..038704c34 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -1395,21 +1395,21 @@ [%+ constants.USER_PASSWORD_MIN_LENGTH FILTER html %] characters long. [% ELSIF error == "password_not_complex" %] - [% title = "Password Fails Requirements" %] - [% passregex = Param('password_complexity') %] - The password must contain at least one: - <ul> - [% IF passregex.search('letters') %] - <li>UPPERCASE letter</li> - <li>lowercase letter</li> - [% END %] - [% IF passregex.search('numbers') %] - <li>digit</li> - [% END %] - [% IF passregex.search('specialchars') %] - <li>special character</li> - [% END %] - </ul> + [% title = "Password Fails Requirements" %] + [% passregex = Param('password_complexity') %] + The password must contain at least one: + <ul> + [% IF passregex == 'letters_numbers_specialchars' %] + <li>letter</li> + <li>special character</li> + [% ELSIF passregex.search('letters') %] + <li>UPPERCASE letter</li> + <li>lowercase letter</li> + [% END %] + [% IF passregex.search('numbers') %] + <li>digit</li> + [% END %] + </ul> [% ELSIF error == "product_access_denied" %] [% title = "Product Access Denied" %] |