diff options
author | 2005-12-14 05:32:51 +0000 | |
---|---|---|
committer | 2005-12-14 05:32:51 +0000 | |
commit | 6ca81cd002656534e9f9df711eb99e85c69b54b5 (patch) | |
tree | d4f7efc3f0812909d65ff4da4fee996c4b127a20 /template | |
parent | Bug 266147: Internal error when Flag::notify() ends up with an invalid or emp... (diff) | |
download | bugzilla-6ca81cd002656534e9f9df711eb99e85c69b54b5.tar.gz bugzilla-6ca81cd002656534e9f9df711eb99e85c69b54b5.tar.bz2 bugzilla-6ca81cd002656534e9f9df711eb99e85c69b54b5.zip |
Bug 278414: Cannot add 'cc' notification for Flags when using emailsuffixes - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 350f2c8a0..4ff86c34a 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -556,8 +556,13 @@ [% ELSIF error == "illegal_email_address" %] [% title = "Invalid Email Address" %] The e-mail address you entered (<b>[% addr FILTER html %]</b>) - didn't pass our syntax checking for a legal email address. - [%+ Param('emailregexpdesc') %] + didn't pass our syntax checking for a legal email address. + [% IF default %] + A legal address must contain exactly one '@', + and at least one '.' after the @. + [% ELSE %] + [%+ Param('emailregexpdesc') %] + [% END %] It must also not contain any of these special characters: <tt>\ ( ) & < > , ; : " [ ]</tt>, or any whitespace. |