diff options
author | bugreport%peshkin.net <> | 2004-07-10 16:44:12 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-07-10 16:44:12 +0200 |
commit | a95006629e25bdce2016c4544318df380c91f0fd (patch) | |
tree | 86ca0fec86b70c0bfc86dabbb381da7c5c1faaa6 /buglist.cgi | |
parent | 0066e681a05fb471d9468119e755a00e40dd19f5 (diff) | |
download | bugzilla-a95006629e25bdce2016c4544318df380c91f0fd.tar.gz bugzilla-a95006629e25bdce2016c4544318df380c91f0fd.tar.xz |
Bug 234855: Show only products enterable by current user in edit-multiple
patch by kiko
r=joel,justdave
a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index caf094312..28993cbec 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -875,7 +875,8 @@ if ($dotweak) { $vars->{'dotweak'} = 1; $vars->{'use_keywords'} = 1 if @::legal_keywords; - $vars->{'products'} = \@::legal_product; + my @enterable_products = GetEnterableProducts(); + $vars->{'products'} = \@enterable_products; $vars->{'platforms'} = \@::legal_platform; $vars->{'priorities'} = \@::legal_priority; $vars->{'severities'} = \@::legal_severity; |