diff options
author | lpsolit%gmail.com <> | 2006-05-08 05:13:47 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-05-08 05:13:47 +0200 |
commit | ece3a7ec4685b281efee69286a4dbdeb44971661 (patch) | |
tree | a7cf408860ea24421ded09f46dc4d680cc5f19fa /template/en | |
parent | 46c78a8c7c42bfdf47ee1f68939aa122371b9662 (diff) | |
download | bugzilla-ece3a7ec4685b281efee69286a4dbdeb44971661.tar.gz bugzilla-ece3a7ec4685b281efee69286a4dbdeb44971661.tar.xz |
Bug 332598: Move ValidatePassword() and DBNameToIdAndCheck() from globals.pl into User.pm - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index db3bb682f..1af63b179 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -1022,13 +1022,13 @@ [% ELSIF error == "password_too_long" %] [% title = "Password Too Long" %] - The password is more than 16 characters long. It must be no more than - 16 characters. + The password must be no more than + [%+ constants.USER_PASSWORD_MAX_LENGTH FILTER html %] characters long. [% ELSIF error == "password_too_short" %] [% title = "Password Too Short" %] - The password is less than three characters long. It must be at least - three characters. + The password must be at least + [%+ constants.USER_PASSWORD_MIN_LENGTH FILTER html %] characters long. [% ELSIF error == "patch_too_large" %] [% title = "File Too Large" %] |