summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-11-10 08:17:15 +0100
committerbbaetz%student.usyd.edu.au <>2002-11-10 08:17:15 +0100
commit1a4c7d99c6d13f7b1241d5a722aca7d8a290c1fc (patch)
tree061f4fd0e005bf86e3cb1a1604339054a7ec545c /Bugzilla
parent911599d3eba0787b51171f9a34fa399c13969d9d (diff)
downloadbugzilla-1a4c7d99c6d13f7b1241d5a722aca7d8a290c1fc.tar.gz
bugzilla-1a4c7d99c6d13f7b1241d5a722aca7d8a290c1fc.tar.xz
Bug 178383 - product/component query conditions appear twice
r=myk, justdave a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm14
1 files changed, 0 insertions, 14 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index de40d47e0..adbdbdb2a 100644
--- a/Bugzilla/Search.pm
+++ b/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") {