aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorAlbert Ting <altlist@gmail.com>2016-04-20 01:50:44 +0000
committerDavid Lawrence <dkl@mozilla.com>2016-04-20 01:50:44 +0000
commitea0c5024c1701f6dfdc77c9161d9c0ff2f6c4bde (patch)
tree33392400b4822eb0d1309f16ba0be177ee393fcd /Bugzilla
parenta868b88d147f14c2135beb53b82babbc4c46635f (diff)
downloadbugs-ea0c5024c1701f6dfdc77c9161d9c0ff2f6c4bde.tar
bugs-ea0c5024c1701f6dfdc77c9161d9c0ff2f6c4bde.tar.gz
bugs-ea0c5024c1701f6dfdc77c9161d9c0ff2f6c4bde.tar.bz2
bugs-ea0c5024c1701f6dfdc77c9161d9c0ff2f6c4bde.tar.xz
bugs-ea0c5024c1701f6dfdc77c9161d9c0ff2f6c4bde.zip
Bug 542239 - Accept pronouns everywhere in query.cgi
r=dkl,a=dkl
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 0785a7e67..646f949f5 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -1628,7 +1628,8 @@ sub _special_parse_email {
my $email = trim($params->{"email$id"});
next if !$email;
my $type = $params->{"emailtype$id"} || 'anyexact';
- $type = "anyexact" if $type eq "exact";
+ # for backward compatibility
+ $type = "equals" if $type eq "exact";
my $or_clause = new Bugzilla::Search::Clause('OR');
foreach my $field (qw(assigned_to reporter cc qa_contact)) {