diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-08-12 15:12:26 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-08-12 15:12:26 +0000 |
commit | 441b63accda0538e7257eebabc9796df06630a80 (patch) | |
tree | c2d6af71fd946414901cccd28f7ba5fc36f45f3a /database | |
parent | d651b9dc3b7c7f81dfdfe1b6dcd1e16c5db48890 (diff) | |
download | brdo-441b63accda0538e7257eebabc9796df06630a80.tar.gz brdo-441b63accda0538e7257eebabc9796df06630a80.tar.bz2 |
Moving all legacy handlers into legacy.module.
Diffstat (limited to 'database')
-rw-r--r-- | database/updates.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/database/updates.inc b/database/updates.inc index a2d5400df..21064d782 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -72,7 +72,8 @@ $sql_updates = array( "2004-08-07" => "update_98", "2004-08-09" => "update_99", "2004-08-10" => "update_100", - "2004-08-11" => "update_101" + "2004-08-11" => "update_101", + "2004-08-12" => "update_102" ); function update_32() { @@ -1545,6 +1546,10 @@ function update_101() { return $ret; } +function update_102() { + INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap) VALUES ('modules/legacy.module', 'legacy', 'module', '', 1, 0, 0); +} + function update_sql($sql) { $edit = $_POST["edit"]; $result = db_query($sql); |