diff options
author | justdave%syndicomm.com <> | 2001-06-06 10:16:47 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-06-06 10:16:47 +0000 |
commit | 45b240a6124c67436cea18f90e4a3330ba819441 (patch) | |
tree | 58dca82545d919f126c15ca7c426a87da61a9cf1 /enter_bug.cgi | |
parent | Landing Myk's patch for bug #71767 (diff) | |
download | bugzilla-45b240a6124c67436cea18f90e4a3330ba819441.tar.gz bugzilla-45b240a6124c67436cea18f90e4a3330ba819441.tar.bz2 bugzilla-45b240a6124c67436cea18f90e4a3330ba819441.zip |
Fix for bug 75482: adding the capability to deactivate a group without deleting it (prevent new bugs from being placed into that group, but don't remove the group restriction from bugs already in it).
Patch by Myk Melez <myk@mozilla.org>
r= justdave@syndicomm.com
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index 10c328e1b..493dcadd3 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -410,7 +410,7 @@ print " if ($::usergroupset ne '0') { SendSQL("SELECT bit, description FROM groups " . "WHERE bit & $::usergroupset != 0 " . - " AND isbuggroup != 0 ORDER BY description"); + " AND isbuggroup != 0 AND isactive = 1 ORDER BY description"); while (MoreSQLData()) { my ($bit, $description) = (FetchSQLData()); # Rather than waste time with another Param check and another database |