From: Albert Ting Date: Wed, 20 Apr 2016 01:35:59 +0000 (+0000) Subject: Bug 542239 - Accept pronouns everywhere in query.cgi X-Git-Tag: release-5.1.1~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e2b113614dd7c00eef3fb890103935a33f03fb83;p=thirdparty%2Fbugzilla.git Bug 542239 - Accept pronouns everywhere in query.cgi r=dkl --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 3274b57a63..b922f58452 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1636,8 +1636,8 @@ sub _special_parse_email { my $id = $1; my $email = trim($params->{"email$id"}); next if !$email; - my $type = $params->{"emailtype$id"} || 'anyexact'; - $type = "anyexact" if $type eq "exact"; + my $type = $params->{"emailtype$id"} || 'equals'; + $type = "equals" if $type eq "exact"; my $or_clause = new Bugzilla::Search::Clause('OR'); foreach my $field (qw(assigned_to reporter cc qa_contact)) { diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index 30835b1b0b..0eed667c5d 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -260,7 +260,7 @@ TUI_hide_default('information_query'); [% FOREACH qv = [ { name => "substring", description => "contains" }, { name => "notsubstring", description => "doesn't contain" }, - { name => "exact", description => "is" }, + { name => "equals", description => "is" }, { name => "notequals", description => "is not" }, { name => "regexp", description => "matches regexp" }, { name => "notregexp", description => "doesn't match regexp" } ] %]