Bug 167595 - Query - multiple-select product (and probably component) broken

2xr = bbaetz


git-svn-id: svn://10.0.0.236/trunk@129180 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bugreport%peshkin.net
2002-09-10 23:51:05 +00:00
parent 828603ec5d
commit 8e32a0b101

View File

@@ -129,13 +129,15 @@ sub init {
if ($F{'product'}) {
push(@supptables, "products products_");
push(@wherepart, "products_.id = bugs.product_id");
push(@specialchart, ["products_.name", "anyexact", $F{'product'}]);
push(@specialchart, ["products_.name", "anyexact",
join(',',@{$M{'product'}})]);
}
if ($F{'component'}) {
push(@supptables, "components components_");
push(@wherepart, "components_.id = bugs.component_id");
push(@specialchart, ["components_.name", "anyexact", $F{'component'}]);
push(@specialchart, ["components_.name", "anyexact",
join(',',@{$M{'component'}})]);
}
if ($F{'keywords'}) {