diff options
author | lpsolit%gmail.com <> | 2005-12-14 06:32:51 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-12-14 06:32:51 +0100 |
commit | 6ca81cd002656534e9f9df711eb99e85c69b54b5 (patch) | |
tree | d4f7efc3f0812909d65ff4da4fee996c4b127a20 /template | |
parent | 6cbc51f437e951177e7ef35f4779cdf1b23a88b7 (diff) | |
download | bugzilla-6ca81cd002656534e9f9df711eb99e85c69b54b5.tar.gz bugzilla-6ca81cd002656534e9f9df711eb99e85c69b54b5.tar.xz |
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. |