summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorbbaetz%acm.org <>2003-04-25 08:11:59 +0200
committerbbaetz%acm.org <>2003-04-25 08:11:59 +0200
commitf8f87b3a7f45cd47256c655fcebd8ec92cfee459 (patch)
tree19e95f914fce3f3dce973081edc3bc41365a2e5e /checksetup.pl
parent76f0aeecc5493999e09b8973b4017f344223d5e3 (diff)
downloadbugzilla-f8f87b3a7f45cd47256c655fcebd8ec92cfee459.tar.gz
bugzilla-f8f87b3a7f45cd47256c655fcebd8ec92cfee459.tar.xz
Bug 201018 - editusers.cgi never calls DeriveGroup prior to changing a bug
patch mostly by justdave, bits by me r=bbaetz,justdave,myk a=justdave
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl8
1 files changed, 7 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index f67042599..7c44eaa68 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -3863,12 +3863,18 @@ if ($sth->rows == 0) {
# Support for quips approval
AddField('quips', 'approved', 'tinyint(1) NOT NULL DEFAULT 1');
-# 2002-11-XX Bug 180870 - remove manual shadowdb replication code
+# 2002-12-20 Bug 180870 - remove manual shadowdb replication code
if (TableExists('shadowlog')) {
print "Removing shadowlog table\n";
$dbh->do("DROP TABLE shadowlog");
}
+# 2003-04-24 - myk@mozilla.org/bbaetz@acm.org, bug 201018
+# Force all cached groups to be updated at login, due to security
+# At the next schema change, this should be moved inside that block so that the
+# update doesn't happen on every run
+$dbh->do("UPDATE profiles SET refreshed_when='1900-01-01 00:00:00'");
+
#
# Final checks...