summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search/Quicksearch.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-04-29 07:36:27 +0200
committerByron Jones <bjones@mozilla.com>2013-04-29 07:36:27 +0200
commit1a482cef215082702cc7b6c4be3eaa22d24b4849 (patch)
tree03e98f342876fc8a586d0e1fa256318bbce563d2 /Bugzilla/Search/Quicksearch.pm
parent40cfe61cccb14a43f487967b129a37607fcc39bd (diff)
downloadbugzilla-1a482cef215082702cc7b6c4be3eaa22d24b4849.tar.gz
bugzilla-1a482cef215082702cc7b6c4be3eaa22d24b4849.tar.xz
rollback Bug 828344
Diffstat (limited to 'Bugzilla/Search/Quicksearch.pm')
-rw-r--r--Bugzilla/Search/Quicksearch.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm
index 92aaf7fb0..215cc842e 100644
--- a/Bugzilla/Search/Quicksearch.pm
+++ b/Bugzilla/Search/Quicksearch.pm
@@ -381,8 +381,10 @@ sub _handle_field_names {
my ($or_operand, $negate, $unknownFields, $ambiguous_fields) = @_;
# Flag and requestee shortcut
- if ($or_operand =~ /^(?:flag:)?([^\?]+\?[^\?]*)$/) {
+ if ($or_operand =~ /^(?:flag:)?([^\?]+\?)([^\?]*)$/) {
addChart('flagtypes.name', 'substring', $1, $negate);
+ $chart++; $and = $or = 0; # Next chart for boolean AND
+ addChart('requestees.login_name', 'substring', $2, $negate);
return 1;
}