diff options
author | chrisaga <chrisaga@piwigo.org> | 2006-07-06 19:23:58 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2006-07-06 19:23:58 +0000 |
commit | 0f10d74485cb5a12ec18d770bc29e41a1adac628 (patch) | |
tree | f4f928669402353b0c4d6366618bf03a9b2073da /install/upgrade_1.5.0.php | |
parent | be5336f6cd55844854f64945e8da1cc974d2ba87 (diff) |
fix bug 452: upgrade fails with MySQL 3.23.x ( no carriage retur allowed after ; )
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1437 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/upgrade_1.5.0.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/install/upgrade_1.5.0.php b/install/upgrade_1.5.0.php index 5ab450dad..a1acc6f64 100644 --- a/install/upgrade_1.5.0.php +++ b/install/upgrade_1.5.0.php @@ -436,8 +436,7 @@ INSERT INTO ".CONFIG_TABLE." '', 'Complementary mail content for notification by mail' ) -; -"; +;"; pwg_query($query); // depending on the way the 1.5.0 was installed (from scratch or by upgrade) @@ -469,4 +468,4 @@ ALTER TABLE '.PREFIX_TABLE.'users } } -?>
\ No newline at end of file +?> |