From 6e3588938ed67992930dd70cd88e712fd1cf2f0b Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" Date: Sat, 9 Nov 2002 23:17:15 +0000 Subject: [PATCH] Bug 178383 - product/component query conditions appear twice r=myk, justdave a=justdave git-svn-id: svn://10.0.0.236/trunk@133512 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/Bugzilla/Search.pm | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/mozilla/webtools/bugzilla/Bugzilla/Search.pm b/mozilla/webtools/bugzilla/Bugzilla/Search.pm index de40d47e04c..adbdbdb2a87 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Search.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Search.pm @@ -148,20 +148,6 @@ sub init { } } - if ($params->param('product')) { - push(@supptables, "products products_"); - push(@wherepart, "products_.id = bugs.product_id"); - push(@specialchart, ["products_.name", "anyexact", - join(',',$params->param('product'))]); - } - - if ($params->param('component')) { - push(@supptables, "components components_"); - push(@wherepart, "components_.id = bugs.component_id"); - push(@specialchart, ["components_.name", "anyexact", - join(',',$params->param('component'))]); - } - if ($params->param('keywords')) { my $t = $params->param('keywords_type'); if (!$t || $t eq "or") {