- fix accessibility of Froxlor

- added option to decide how Froxlor is being reached
- set version to 0.9.10
This commit is contained in:
Michael Kaufmann (d00p)
2010-06-28 08:53:41 +00:00
parent cc5c30cc69
commit e5cd9ad727
9 changed files with 55 additions and 4 deletions

View File

@@ -211,4 +211,13 @@ function parseAndOutputPreconfig(&$has_preconfig, &$return, $current_version)
eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";");
}
}
if(versionInUpdate($current_version, '0.9.10'))
{
$has_preconfig = true;
$description = 'you can now decide whether Froxlor should be reached via hostname/froxlor or directly via the hostname.';
$question = '<strong>Do you want Froxlor to be reached directly via the hostname?:</strong>&nbsp;';
$question.= makeyesno('update_directlyviahostname', '1', '0', '0');
eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";");
}
}