diff --git a/install/froxlor.sql.php b/install/froxlor.sql.php index 6ac14e4c14..25646e65ee 100644 --- a/install/froxlor.sql.php +++ b/install/froxlor.sql.php @@ -726,7 +726,7 @@ ('panel', 'logo_overridecustom', '0'), ('panel', 'settings_mode', '0'), ('panel', 'menu_collapsed', '1'), - ('panel', 'version', '2.1.5'), + ('panel', 'version', '2.1.6'), ('panel', 'db_version', '202312120'); diff --git a/install/updates/froxlor/update_2.1.inc.php b/install/updates/froxlor/update_2.1.inc.php index cb6ec064c7..e4ef83140a 100644 --- a/install/updates/froxlor/update_2.1.inc.php +++ b/install/updates/froxlor/update_2.1.inc.php @@ -284,3 +284,8 @@ Update::showUpdateStep("Updating from 2.1.4 to 2.1.5", false); Froxlor::updateToVersion('2.1.5'); } + +if (Froxlor::isFroxlorVersion('2.1.5')) { + Update::showUpdateStep("Updating from 2.1.5 to 2.1.6", false); + Froxlor::updateToVersion('2.1.6'); +} diff --git a/lib/Froxlor/Froxlor.php b/lib/Froxlor/Froxlor.php index 1feec5d0d8..4ed328db32 100644 --- a/lib/Froxlor/Froxlor.php +++ b/lib/Froxlor/Froxlor.php @@ -31,7 +31,7 @@ final class Froxlor { // Main version variable - const VERSION = '2.1.5'; + const VERSION = '2.1.6'; // Database version (YYYYMMDDC where C is a daily counter) const DBVERSION = '202312120';