summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-02-01 21:46:42 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-02-01 21:46:42 +0100
commit26426fe87683c76702a2340bf852e8bb0eca7626 (patch)
tree4f683c215ee1e65dd1c24ba4fb460031030e5ba4 /Bugzilla/Search.pm
parentad31a5706aed1cee3fa5c54733b1244a86042c7f (diff)
downloadbugzilla-26426fe87683c76702a2340bf852e8bb0eca7626.tar.gz
bugzilla-26426fe87683c76702a2340bf852e8bb0eca7626.tar.xz
Bug 537746: Search criteria headers on buglist duplicate unnecessarily when bugidtype is in use
Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm9
1 files changed, 1 insertions, 8 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index e6b9e8937..43b95f293 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -194,6 +194,7 @@ sub init {
my $self = shift;
my @fields = @{ $self->{'fields'} || [] };
my $params = $self->{'params'};
+ $params->convert_old_params();
$self->{'user'} ||= Bugzilla->user;
my $user = $self->{'user'};
@@ -290,14 +291,6 @@ sub init {
}
}
- if ($params->param('bug_id')) {
- my $type = "anyexact";
- if ($params->param('bugidtype') && $params->param('bugidtype') eq 'exclude') {
- $type = "nowords";
- }
- push(@specialchart, ["bug_id", $type, join(',', $params->param('bug_id'))]);
- }
-
# If the user has selected all of either status or resolution, change to
# selecting none. This is functionally equivalent, but quite a lot faster.
# Also, if the status is __open__ or __closed__, translate those