summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-10-17 18:34:38 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-10-17 18:34:38 +0000
commitb60b9ca828728e4e95b39ebc433516f2299e0237 (patch)
tree0d03d003cb1e0607e3d0d0dacf2ec4ea4458a013 /update.php
parent623397d6dd943e6477a6b339e01fe44a5de8c6db (diff)
downloadbrdo-b60b9ca828728e4e95b39ebc433516f2299e0237.tar.gz
brdo-b60b9ca828728e4e95b39ebc433516f2299e0237.tar.bz2
- removed function module_rehash().
- updated database dump. - removed tables modules, layout and referrer (don't forget to backup!).
Diffstat (limited to 'update.php')
-rw-r--r--update.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/update.php b/update.php
index 13ea14ebc..646615de0 100644
--- a/update.php
+++ b/update.php
@@ -53,7 +53,8 @@ $mysql_updates = array(
"2002-08-26" => "update_38",
"2002-09-15" => "update_39",
"2002-09-17" => "update_40",
- "2002-10-13" => "update_41"
+ "2002-10-13" => "update_41",
+ "2002-10-17" => "update_42"
);
// Update functions
@@ -610,6 +611,12 @@ function update_41() {
)");
}
+function update_42() {
+ update_sql("DROP TABLE modules");
+ update_sql("DROP TABLE layout");
+ update_sql("DROP TABLE referrer");
+}
+
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)");