fixing update-process, reverting multiserver-support-changes (now in branch)

This commit is contained in:
Michael Kaufmann (d00p)
2010-10-23 10:37:43 +00:00
parent 22eb0e19cc
commit ed5e2ba39d
4 changed files with 82 additions and 2 deletions

View File

@@ -343,4 +343,12 @@ function parseAndOutputPreconfig(&$has_preconfig, &$return, $current_version)
$question.= makeyesno('update_allow_domain_login', '1', '0', '0');
eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";");
}
if(versionInUpdate($current_version, '0.9.14-svn10'))
{
$has_preconfig = true;
$description = '<strong>This update removes the unsupported real-time option. Additionally the deprecated tables for navigation and cronscripts are removed, any modules using these tables need to be updated to the new structure!</strong>';
$question = '';
eval("\$return.=\"" . getTemplate("update/preconfigitem") . "\";");
}
}