diff options
author | dave%intrec.com <> | 2000-07-19 00:28:19 +0200 |
---|---|---|
committer | dave%intrec.com <> | 2000-07-19 00:28:19 +0200 |
commit | af986f45c5d82ed054780098898e2b726ffe416f (patch) | |
tree | f89ed8a456f6550fa45abfcc6031215a18ca6fdb /query.cgi | |
parent | 45951692d647926e6fb467523c96572e716988b4 (diff) | |
download | bugzilla-af986f45c5d82ed054780098898e2b726ffe416f.tar.gz bugzilla-af986f45c5d82ed054780098898e2b726ffe416f.tar.xz |
Fix for bug 45586. When using 'usebuggroupsentry', prevent users from
seeing products the don't have access to on the query page.
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 19 |
1 files changed, 17 insertions, 2 deletions
@@ -274,6 +274,21 @@ sub GenerateEmailInput { my $emailinput1 = GenerateEmailInput(1); my $emailinput2 = GenerateEmailInput(2); +# if using usebuggroups, then we don't want people to see products they don't +# have access to. remove them from the list. + +@::product_list = (); +foreach my $p (@::legal_product) { + if(Param("usebuggroupsentry") + && GroupExists($p) + && !UserInGroup($p)) { + # If we're using bug groups to restrict entry on products, and + # this product has a bug group, and the user is not in that + # group, we don't want to include that product in this list. + next; + } + push @::product_list, $p; +} # javascript @@ -306,7 +321,7 @@ foreach $tm (@::legal_target_milestone) { $jscript .= "tms['$tm'] = new Array();\n"; } -for $p (@::legal_product) { +for $p (@::product_list) { if ($::components{$p}) { foreach $c (@{$::components{$p}}) { $jscript .= "cpts['$c'][cpts['$c'].length] = '$p';\n"; @@ -602,7 +617,7 @@ print " <td align=left valign=top> <SELECT NAME=\"product\" MULTIPLE SIZE=5 onChange=\"selectProduct(this.form);\"> -@{[make_options(\@::legal_product, $default{'product'}, $type{'product'})]} +@{[make_options(\@::product_list, $default{'product'}, $type{'product'})]} </SELECT> </td> |