summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-07-08 14:35:20 +0200
committermkanat%kerio.com <>2005-07-08 14:35:20 +0200
commit9b11535c66ebe5103afea0eb87e92c939a975d34 (patch)
tree7578009e82dda6eb3ab2ba8d5d843be30d7464e5 /checksetup.pl
parent0d7a4fbf959a1c522350786e83df580476bf5642 (diff)
downloadbugzilla-9b11535c66ebe5103afea0eb87e92c939a975d34.tar.gz
bugzilla-9b11535c66ebe5103afea0eb87e92c939a975d34.tar.xz
Bug 292544: [SECURITY] Can see a security-sensitive bug in buglist.cgi for a short time when there are certain performance problems
Patch By Frederic Buclin <LpSolit@gmail.com> r=joel, a=justdave
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 176ad463c..b5158ccb3 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -3966,6 +3966,9 @@ if (!exists $dbh->bz_column_info('milestones', 'sortkey')->{DEFAULT}) {
{TYPE => 'INT2', NOTNULL => 1, DEFAULT => 0});
}
+# 2005-06-14 - LpSolit@gmail.com - Bug 292544: only set creation_ts
+# when all bug fields have been correctly set.
+$dbh->bz_alter_column('bugs', 'creation_ts', {TYPE => 'DATETIME'});
# If you had to change the --TABLE-- definition in any way, then add your
# differential change code *** A B O V E *** this comment.