From 533112720463fdb712140d116e058d9c223cc00e Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Fri, 8 Apr 2016 13:52:06 +0200 Subject: [PATCH] set version to 0.9.35.1; fix updater :x Signed-off-by: Michael Kaufmann (d00p) --- admin_updates.php | 2 +- install/froxlor.sql | 2 +- install/updates/froxlor/0.9/update_0.9.inc.php | 8 ++++++++ lib/version.inc.php | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/admin_updates.php b/admin_updates.php index a7398b085c..33ba90a672 100644 --- a/admin_updates.php +++ b/admin_updates.php @@ -54,7 +54,7 @@ } } - if (hasDbUpdates($dbversion)) { + if (hasDbUpdates($dbversion) || hasUpdates($version)) { $successful_update = false; $message = ''; diff --git a/install/froxlor.sql b/install/froxlor.sql index 267500256d..ae2ec259b8 100644 --- a/install/froxlor.sql +++ b/install/froxlor.sql @@ -555,7 +555,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES ('panel', 'password_numeric', '0'), ('panel', 'password_special_char_required', '0'), ('panel', 'password_special_char', '!?<>ยง$%+#=@'), - ('panel', 'version', '0.9.35'), + ('panel', 'version', '0.9.35.1'), ('panel', 'db_version', '201603150'); diff --git a/install/updates/froxlor/0.9/update_0.9.inc.php b/install/updates/froxlor/0.9/update_0.9.inc.php index 3d3be7157e..2b435653a9 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -3284,3 +3284,11 @@ updateToVersion('0.9.35'); } + +if (isFroxlorVersion('0.9.35')) { + + showUpdateStep("Updating from 0.9.35 to 0.9.35.1"); + lastStepStatus(0); + + updateToVersion('0.9.35.1'); +} diff --git a/lib/version.inc.php b/lib/version.inc.php index ea86f68779..39283a8fcc 100644 --- a/lib/version.inc.php +++ b/lib/version.inc.php @@ -16,7 +16,7 @@ */ // Main version variable -$version = '0.9.35'; +$version = '0.9.35.1'; // Database version (YYYYMMDDC where C is a daily counter) $dbversion = '201603150';