summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authordonm%bluemartini.com <>2000-04-19 08:10:35 +0200
committerdonm%bluemartini.com <>2000-04-19 08:10:35 +0200
commit04e9a1ce86f50d71029cad6faee633d76bf466d8 (patch)
tree052a85b7e1eb2279ab420689cdef81b48b699a53 /bug_form.pl
parent6dff94ab87e983958e91b9eef4cee7a9deb0d84c (diff)
downloadbugzilla-04e9a1ce86f50d71029cad6faee633d76bf466d8.tar.gz
bugzilla-04e9a1ce86f50d71029cad6faee633d76bf466d8.tar.xz
bug 25010 add ability to easily edit groups
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl2
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());