From 9de08340975efaab3d8f97547753e9fbbdc28bf3 Mon Sep 17 00:00:00 2001 From: Max Kanat-Alexander Date: Tue, 7 Sep 2010 18:34:19 -0700 Subject: [PATCH] Bug 584414: Searching for bugs with "at least X votes" was broken in 3.6 only. r=LpSolit, a=LpSolit --- Bugzilla/Search.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index e6e57b2ccb..4340025a87 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -346,6 +346,8 @@ sub init { } foreach my $field ($params->param()) { + # "votes" got special treatment, above. + next if $field eq 'votes'; if (grep { $_->name eq $field } @legal_fields) { my $type = $params->param("${field}_type"); if (!$type) { -- 2.47.2