From 4e84d7676a540443168c126de811f6e377cefea4 Mon Sep 17 00:00:00 2001 From: ngleader Date: Tue, 22 Dec 2009 01:05:26 +0000 Subject: [PATCH] fix git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7068 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/install/install.view.php | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/modules/install/install.view.php b/modules/install/install.view.php index 5d4cfa4b5..202c97165 100644 --- a/modules/install/install.view.php +++ b/modules/install/install.view.php @@ -31,20 +31,7 @@ * @brief license 메세지 노출 **/ function dispInstallIntroduce() { - $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'); + $this->setTemplateFile('introduce'); } /** @@ -63,7 +50,7 @@ if(!$this->install_enable) return $this->dispInstallCheckEnv(); // ftp 정보 입력 - if(ini_get('safe_mode') && !Context::isFTPRegisted()) { + if(!Context::isFTPRegisted()) { $this->setTemplateFile('ftp'); } else { $this->setTemplateFile('select_db');