Skip to content

Commit

Permalink
fix install class, set version to 0.9.38.6
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
  • Loading branch information
d00p committed Jan 15, 2017
1 parent 338cf16 commit 9fdcd09
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion install/froxlor.sql
Expand Up @@ -581,7 +581,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.5'),
('panel', 'version', '0.9.38.6'),
('panel', 'db_version', '201612110');


Expand Down
2 changes: 1 addition & 1 deletion install/lib/class.FroxlorInstall.php
Expand Up @@ -181,7 +181,7 @@ private function _checkPostData()
$this->_data['servername'] = '';
}

if (empty($this->_data['serverip'] || $this->_validate_ip($this->_data['serverip']) == false)) {
if (empty($this->_data['serverip']) || $this->_validate_ip($this->_data['serverip']) == false) {
return false;
}

Expand Down
6 changes: 6 additions & 0 deletions install/updates/froxlor/0.9/update_0.9.inc.php
Expand Up @@ -3579,3 +3579,9 @@
showUpdateStep("Updating from 0.9.38.4 to 0.9.38.5", false);
updateToVersion('0.9.38.5');
}

if (isFroxlorVersion('0.9.38.5')) {

showUpdateStep("Updating from 0.9.38.5 to 0.9.38.6", false);
updateToVersion('0.9.38.6');
}
2 changes: 1 addition & 1 deletion lib/version.inc.php
Expand Up @@ -16,7 +16,7 @@
*/

// Main version variable
$version = '0.9.38.5';
$version = '0.9.38.6';

// Database version (YYYYMMDDC where C is a daily counter)
$dbversion = '201612110';
Expand Down

0 comments on commit 9fdcd09

Please sign in to comment.