Compare commits

...

1 Commits

Author SHA1 Message Date
Michael Kaufmann (d00p)
16f547bce0 last time....0.9.38.3....what a day
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
2016-11-18 10:27:11 +01:00
3 changed files with 9 additions and 3 deletions

View File

@@ -577,7 +577,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
('panel', 'password_special_char_required', '0'),
('panel', 'password_special_char', '!?<>§$%+#=@'),
('panel', 'customer_hide_options', ''),
('panel', 'version', '0.9.38.2'),
('panel', 'version', '0.9.38.3'),
('panel', 'db_version', '201611180');

View File

@@ -3535,8 +3535,14 @@ if (isFroxlorVersion('0.9.38')) {
updateToVersion('0.9.38.1');
}
if (isFroxlorVersion('0.9.38')) {
if (isFroxlorVersion('0.9.38.1')) {
showUpdateStep("Updating from 0.9.38.1 to 0.9.38.2", false);
updateToVersion('0.9.38.2');
}
if (isFroxlorVersion('0.9.38.2')) {
showUpdateStep("Updating from 0.9.38.2 to 0.9.38.3", false);
updateToVersion('0.9.38.3');
}

View File

@@ -16,7 +16,7 @@
*/
// Main version variable
$version = '0.9.38.2';
$version = '0.9.38.3';
// Database version (YYYYMMDDC where C is a daily counter)
$dbversion = '201611180';