summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-01 06:46:55 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-01 06:46:55 +0000
commite5033fe1cf07caeb61e72dfe1ae9a7b07f5406c0 (patch)
tree42a05e1a99c3dd54b80e57f77f9500a9a9b0015d /update.php
parent882c3f6d2d6d82513b94cf6b719e01e803a33cf1 (diff)
downloadbrdo-e5033fe1cf07caeb61e72dfe1ae9a7b07f5406c0.tar.gz
brdo-e5033fe1cf07caeb61e72dfe1ae9a7b07f5406c0.tar.bz2
- Fixed critical bug #1788: cloud module pings too much. Modified patch by
Kjartan. This update requires some database changes so make sure to run update.php.
Diffstat (limited to 'update.php')
-rw-r--r--update.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/update.php b/update.php
index 1a6efa586..ca23a700d 100644
--- a/update.php
+++ b/update.php
@@ -66,7 +66,8 @@ $mysql_updates = array(
"2003-04-19" => "update_51",
"2003-04-20" => "update_52",
"2003-05-18" => "update_53",
- "2003-05-24" => "update_54"
+ "2003-05-24" => "update_54",
+ "2003-05-31" => "update_55"
);
// Update functions
@@ -714,6 +715,11 @@ function update_54() {
update_sql("ALTER TABLE locales CHANGE string string BLOB DEFAULT '' NOT NULL");
}
+function update_55() {
+ update_sql("ALTER TABLE site ADD checked INT(11) NOT NULL;");
+ update_sql("ALTER TABLE site CHANGE timestamp changed INT(11) NOT NULL;");
+}
+
function update_upgrade3() {
update_sql("INSERT INTO system VALUES ('archive.module','archive','module','',1)");
update_sql("INSERT INTO system VALUES ('block.module','block','module','',1)");