diff options
Diffstat (limited to 'bug_form.pl')
-rw-r--r-- | bug_form.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug_form.pl b/bug_form.pl index 1402a1a47..2b705efd0 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -355,7 +355,7 @@ print " <TEXTAREA WRAP=HARD NAME=comment ROWS=5 COLS=80></TEXTAREA><BR>"; -if ($::usergroupset ne '0') { +if ($::usergroupset ne '0' and Param('usebuggroups')) { SendSQL("select bit, description, (bit & $bug{'groupset'} != 0) from groups where bit & $::usergroupset != 0 and isbuggroup != 0 order by bit"); while (MoreSQLData()) { my ($bit, $description, $ison) = (FetchSQLData()); |