summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-06-25 21:10:28 +0200
committerlpsolit%gmail.com <>2005-06-25 21:10:28 +0200
commit951c040a0968a02740464e359a9bfd3c75a0e4cc (patch)
tree3ce61a16ecd251e5b042aca5d0c1183e67df3e48 /checksetup.pl
parent05cc6289d00b21e12d4d59282384b8729a5c2b57 (diff)
downloadbugzilla-951c040a0968a02740464e359a9bfd3c75a0e4cc.tar.gz
bugzilla-951c040a0968a02740464e359a9bfd3c75a0e4cc.tar.xz
Bug 277454: Bugs in inactivated groups don't show padlocks on the buglist - Patch by Marc Schumann <wurblzap@gmail.com> r=LpSolit a=justdave
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 4cfc096e1..61df2c688 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -3314,7 +3314,7 @@ if ($mapcnt == 0) {
# First, get all the existing products and their groups.
$sth = $dbh->prepare("SELECT groups.id, products.id, groups.name, " .
"products.name FROM groups, products " .
- "WHERE isbuggroup != 0 AND isactive != 0");
+ "WHERE isbuggroup != 0");
$sth->execute();
while (my ($groupid, $productid, $groupname, $productname)
= $sth->fetchrow_array()) {