diff options
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 0e338709b..164bc206a 100644 --- a/update.php +++ b/update.php @@ -55,7 +55,8 @@ $mysql_updates = array( "2002-09-17" => "update_40", "2002-10-13" => "update_41", "2002-10-17" => "update_42", - "2002-10-26" => "update_43" + "2002-10-26" => "update_43", + "2002-11-08" => "update_44" ); // Update functions @@ -625,6 +626,10 @@ function update_43() { update_sql("UPDATE boxes SET type = 1 WHERE type = 2"); } +function update_44() { + update_sql("UPDATE system SET filename = CONCAT('modules/', filename) WHERE type = 'module'"); +} + 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)"); |