diff options
author | myk%mozilla.org <> | 2002-05-11 07:55:09 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-05-11 07:55:09 +0200 |
commit | 8830db252f3876ac00c29bf43fafa51682b79529 (patch) | |
tree | 4d76d6faaf9cb2382e1418530d1c6a7fb5e934ec /buglist.cgi | |
parent | 90015c500f84b3d0cc2e9135192120cbb164c1d3 (diff) | |
download | bugzilla-8830db252f3876ac00c29bf43fafa51682b79529.tar.gz bugzilla-8830db252f3876ac00c29bf43fafa51682b79529.tar.xz |
Fix for bug 143547: Don't show bugs as grey if usebuggroups parameter is set to true.
Patch by Myk Melez <myk@mozilla.org>.
2xr=gerv
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 801470113..8a0ee1875 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -1474,7 +1474,7 @@ $vars->{'order'} = $order; my $login = $::COOKIE{'Bugzilla_login'}; $vars->{'caneditbugs'} = UserInGroup('editbugs'); -$vars->{'usebuggroups'} = UserInGroup('usebuggroups'); +$vars->{'usebuggroups'} = Param('usebuggroups'); # Whether or not this user is authorized to move bugs to another installation. $vars->{'ismover'} = 1 |