diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-08 16:50:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-08 16:50:05 +0000 |
commit | a448f5a9b46c5a5e5bcd64072a420bef33161a44 (patch) | |
tree | 3b5ac996148f4e2b3547b45a671b00f0fbdb54ba /update.php | |
parent | ff914280b9cb8961b26556cb378329e6e3bfda55 (diff) | |
download | brdo-a448f5a9b46c5a5e5bcd64072a420bef33161a44.tar.gz brdo-a448f5a9b46c5a5e5bcd64072a420bef33161a44.tar.bz2 |
- Charset simpliciations. Patch #46 by Al.
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 81e1bac04..16f5a4361 100644 --- a/update.php +++ b/update.php @@ -68,7 +68,8 @@ $mysql_updates = array( "2003-05-18" => "update_53", "2003-05-24" => "update_54", "2003-05-31" => "update_55", - "2003-06-04" => "update_56" + "2003-06-04" => "update_56", + "2003-06-08" => "update_57" ); // Update functions @@ -725,6 +726,10 @@ function update_56() { update_sql("ALTER TABLE vocabulary CHANGE types nodes TEXT DEFAULT '' NOT NULL"); } +function update_57() { + update_sql("DELETE FROM variable WHERE name = 'site_charset'"); +} + 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)"); |