- add possibility to add a subdomain of another domain as "full"-domain in admin-interface, fixes #329

This commit is contained in:
Michael Kaufmann (d00p)
2010-08-06 05:43:28 +00:00
parent ee7177bdec
commit ed9235d341
11 changed files with 165 additions and 15 deletions

View File

@@ -973,3 +973,14 @@ if(isFroxlorVersion('0.9.12-svn1'))
updateToVersion('0.9.12-svn2');
}
if(isFroxlorVersion('0.9.12-svn2'))
{
showUpdateStep("Updating from 0.9.12-svn2 to 0.9.12-svn3", false);
showUpdateStep("Adding new field to domain table");
$db->query("ALTER TABLE `".TABLE_PANEL_DOMAINS."` ADD `ismainbutsubto` int(11) unsigned NOT NULL default '0' AFTER `mod_fcgid_maxrequests`;");
lastStepStatus(0);
updateToVersion('0.9.12-svn3');
}