Commit d7b93f80 authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

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

2xr = bbaetz
parent 9603e1ce
......@@ -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'}) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment