diff options
author | lpsolit%gmail.com <> | 2007-07-20 19:55:55 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-07-20 19:55:55 +0200 |
commit | 1b984c1173997419539b419e68ce893fc0dee4ee (patch) | |
tree | 0e775e8f3e3f30328429b63cfddfb88628f543ea /template | |
parent | 92edb9c70d2297d0588a60ba700bd29c9670bb98 (diff) | |
download | bugzilla-1b984c1173997419539b419e68ce893fc0dee4ee.tar.gz bugzilla-1b984c1173997419539b419e68ce893fc0dee4ee.tar.xz |
Bug 365082: QuickSearch using unknown field makes Bugzilla hang - Patch by Teemu Mannermaa <wicked@sci.fi> r/a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 072a10a56..658532766 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -1295,6 +1295,20 @@ [% title = "Query Name Too Long" %] The name of the query must be less than 64 characters long. + [% ELSIF error == "quicksearch_unknown_field" %] + [% title = "Unknown QuickSearch Field" %] + [% IF fields.unique.size == 1 %] + Field <code>[% fields.first FILTER html %]</code> is not a known field. + [% ELSE %] + Fields + [% FOREACH field = fields.unique.sort %] + <code>[% field FILTER html %]</code> + [% ', ' UNLESS loop.last() %] + [% END %] + are not known fields. + [% END %] + The legal field names are <a href="page.cgi?id=quicksearchhack.html">listed here</a>. + [% ELSIF error == "reassign_to_empty" %] [% title = "Illegal Reassignment" %] To reassign [% terms.abug %], you must provide an address for |