summaryrefslogtreecommitdiffstats
path: root/reports.cgi
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2002-12-10 23:17:02 +0100
committerbugreport%peshkin.net <>2002-12-10 23:17:02 +0100
commitc457b4c49d1ac10b91db246235e65292798f33d6 (patch)
tree3db43e4e18df802769faa519a5732bf971ff869e /reports.cgi
parente9093fd7f7e7e37d0c057b77f86f8f087c0887b1 (diff)
downloadbugzilla-c457b4c49d1ac10b91db246235e65292798f33d6.tar.gz
bugzilla-c457b4c49d1ac10b91db246235e65292798f33d6.tar.xz
Bug 184081 Change search interfaces to use Viewable products instead of enterable products
r=bbaetz a=justdave
Diffstat (limited to 'reports.cgi')
-rwxr-xr-xreports.cgi4
1 files changed, 1 insertions, 3 deletions
diff --git a/reports.cgi b/reports.cgi
index 05e19990e..e18d3ee37 100755
--- a/reports.cgi
+++ b/reports.cgi
@@ -61,9 +61,7 @@ GetVersionTable();
# We only want those products that the user has permissions for.
my @myproducts;
push( @myproducts, "-All-");
-foreach my $this_product (@legal_product) {
- push(@myproducts, $this_product) if CanEnterProduct($this_product);
-}
+push( @myproducts, GetSelectableProducts());
if (! defined $FORM{'product'}) {