From 51e15329e9cf5c4a7a492b0a8689d436f012f45d Mon Sep 17 00:00:00 2001 From: Imran Chaudhry Date: Sat, 28 Sep 2013 01:09:29 +0200 Subject: Bug 798927: An error should be thrown when passing an illegal pronoun r=LpSolit a=justdave --- Bugzilla/Search.pm | 3 ++- template/en/default/global/user-error.html.tmpl | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index a7600f449..7bd4381ed 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -2196,7 +2196,8 @@ sub pronoun { if ($noun eq "%qacontact%") { return "COALESCE(bugs.qa_contact,0)"; } - return 0; + + ThrowUserError('illegal_pronoun', { pronoun => $noun }); } sub _contact_pronoun { diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 1a3aa07ac..939eb2c3c 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -891,6 +891,13 @@ Your group control combination for group " [% groupname FILTER html %]" is illegal. + [% ELSIF error == "illegal_pronoun" %] + [% title = "Illegal Pronoun" %] + The pronoun you used ([% pronoun FILTER html %]) is illegal. You must use + one of the approved pronouns. Please see + Pronoun Substitution + for a complete list. + [% ELSIF error == "illegal_query_name" %] [% title = "Illegal Search Name" %] The name of your search cannot contain any of the following characters: -- cgit v1.2.3-24-g4f1b