diff options
author | plegall <plg@piwigo.org> | 2006-04-19 20:54:13 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-04-19 20:54:13 +0000 |
commit | 8789f41f8ccb31d0ec9f2c75996511e26abba8bc (patch) | |
tree | 2ca978b4642a0d8a9be3cf95d2c3cd4c93458278 /install/upgrade_1.4.0.php | |
parent | dab8075c964fb1ba0c8ffc0158c29446bca70142 (diff) |
bug fixed: during installation, upgrades from install/db with complex
identifier (X.x) were not correctly inserted.
bug fixed: available upgrades from install/db need to be inserted in
#upgrade table.
deletion: all upgrades from install/db coming from trunk are removed.
new: complete upgrade from any previous release from 1.3.0 to 1.5.2 with
automatic detection detection of the previous release.
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1209 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/upgrade_1.4.0.php')
-rw-r--r-- | install/upgrade_1.4.0.php | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/install/upgrade_1.4.0.php b/install/upgrade_1.4.0.php index a5f8f38c6..fef961254 100644 --- a/install/upgrade_1.4.0.php +++ b/install/upgrade_1.4.0.php @@ -188,12 +188,6 @@ foreach ($queries as $query) pwg_query($query); } -$new_time = get_moment(); -echo '<pre>['.get_elapsed_time($last_time, $new_time).']'; -echo ' Basic database structure upgrade done</pre>'; -flush(); -$last_time = $new_time; - // user datas migration from phpwebgallery_users to phpwebgallery_user_infos $query = ' SELECT * @@ -287,16 +281,16 @@ foreach ($queries as $query) pwg_query($query); } -$infos = array(); - if ($prefix_thumbnail != 'TN-') { array_push( - $infos, + $page['infos'], 'the thumbnail prefix configuration parameter was moved to configuration file, copy config_local.inc.php from "tools" directory to "include" directory and edit $conf[\'prefix_thumbnail\'] = '.$prefix_thumbnail ); } +// now we upgrade from 1.5.0 to 1.6.0 +include_once(PHPWG_ROOT_PATH.'install/upgrade_1.5.0.php'); ?>
\ No newline at end of file |