summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorendico%mozilla.org <>2000-04-19 11:14:36 +0200
committerendico%mozilla.org <>2000-04-19 11:14:36 +0200
commit8286387d6ea6cc755aa47459a609f60d75d59628 (patch)
treee6875367151fdffdeab687070ee6e7e8fc81ac9c /bug_form.pl
parent04e9a1ce86f50d71029cad6faee633d76bf466d8 (diff)
downloadbugzilla-8286387d6ea6cc755aa47459a609f60d75d59628.tar.gz
bugzilla-8286387d6ea6cc755aa47459a609f60d75d59628.tar.xz
backing out because this has broken bugzilla.mozilla.org. the choice is no longer given in show_bug.cgi to make bugs confidential. I need to change lounge so it no longer automatically updates.
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 2b705efd0..1402a1a47 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' and Param('usebuggroups')) {
+if ($::usergroupset ne '0') {
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());