update version

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7066 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-12-22 01:01:39 +00:00
parent 4a847a93ee
commit 27f565b400
2 changed files with 16 additions and 3 deletions

View file

@ -31,7 +31,20 @@
* @brief license 메세지 노출
**/
function dispInstallIntroduce() {
$this->setTemplateFile('introduce');
$install_config_file = FileHandler::getRealPath('./config/install.config.php');
if(file_exists($install_config_file)){
include $install_config_file;
if(is_array($install_config)){
foreach($install_config as $k => $v) Context::set($k,$v,true);
unset($GLOBALS['__DB__']);
$oInstallController = &getController('install');
$oInstallController->procInstall();
header("location: ./index.php?module=admin");
exit;
}
}
$this->setTemplateFile('introduce');
}
/**