diff options
author | Sunil Joshi <joshi_sunil@in.com> | 2012-11-20 18:01:40 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-20 18:01:40 +0100 |
commit | 3c9cbab0743dd8ae1479976f9d47f47af3fa46d5 (patch) | |
tree | 9b9ed85db8503817d94309ce0b808c848df80ee7 /template/en | |
parent | d0dd0615af0d00464e819ef97328fb75d97afe23 (diff) | |
download | bugzilla-3c9cbab0743dd8ae1479976f9d47f47af3fa46d5.tar.gz bugzilla-3c9cbab0743dd8ae1479976f9d47f47af3fa46d5.tar.xz |
Bug 491198: The error message shouldn't say "didn't match anything" when entering a too short name (when emailsuffix is in use)
r/a=LpSolit
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/global/confirm-user-match.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/confirm-user-match.html.tmpl b/template/en/default/global/confirm-user-match.html.tmpl index cf7825f71..c31567a9c 100644 --- a/template/en/default/global/confirm-user-match.html.tmpl +++ b/template/en/default/global/confirm-user-match.html.tmpl @@ -136,7 +136,7 @@ <b>[% query.value.users.0.identity FILTER html %]</b> [% END %] [% ELSE %] - [% IF (query.key.length < 3) && !Param('emailsuffix') %] + [% IF query.key.length < 3 %] <font color="#FF0000">was too short for substring match (minimum 3 characters)</font> [% ELSE %] |