diff options
author | bugreport%peshkin.net <> | 2002-12-10 23:17:02 +0100 |
---|---|---|
committer | bugreport%peshkin.net <> | 2002-12-10 23:17:02 +0100 |
commit | c457b4c49d1ac10b91db246235e65292798f33d6 (patch) | |
tree | 3db43e4e18df802769faa519a5732bf971ff869e /request.cgi | |
parent | e9093fd7f7e7e37d0c057b77f86f8f087c0887b1 (diff) | |
download | bugzilla-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 'request.cgi')
-rwxr-xr-x | request.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/request.cgi b/request.cgi index 920ac79cf..29c19f27f 100755 --- a/request.cgi +++ b/request.cgi @@ -254,10 +254,10 @@ sub queue { # menu when the products menu changes; used by the template to populate # the menus and keep the components menu consistent with the products menu GetVersionTable(); - my $enterable = GetEnterableProductHash(); - $vars->{'products'} = $enterable->{legal_products}; - $vars->{'components'} = $enterable->{legal_components}; - $vars->{'components_by_product'} = $enterable->{components}; + my $selectable = GetSelectableProductHash(); + $vars->{'products'} = $selectable->{legal_products}; + $vars->{'components'} = $selectable->{legal_components}; + $vars->{'components_by_product'} = $selectable->{components}; $vars->{'excluded_columns'} = \@excluded_columns; $vars->{'group_field'} = $::FORM{'group'}; |