mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
update version
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7066 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4a847a93ee
commit
27f565b400
2 changed files with 16 additions and 3 deletions
|
|
@ -13,7 +13,7 @@
|
||||||
* @brief XE의 전체 버전 표기
|
* @brief XE의 전체 버전 표기
|
||||||
* 이 파일의 수정이 없더라도 공식 릴리즈시에 수정되어 함께 배포되어야 함
|
* 이 파일의 수정이 없더라도 공식 릴리즈시에 수정되어 함께 배포되어야 함
|
||||||
**/
|
**/
|
||||||
define('__ZBXE_VERSION__', '1.3.1.1');
|
define('__ZBXE_VERSION__', '1.3.1.2');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief zbXE가 설치된 장소의 base path를 구함
|
* @brief zbXE가 설치된 장소의 base path를 구함
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
* 2 : 소요시간, Request/Response info 출력
|
* 2 : 소요시간, Request/Response info 출력
|
||||||
* 4 : DB 쿼리 내역 출력
|
* 4 : DB 쿼리 내역 출력
|
||||||
**/
|
**/
|
||||||
if(!defined('__DEBUG__')) define('__DEBUG__', 0);
|
if(!defined('__DEBUG__')) define('__DEBUG__', 1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief 디버그 메세지의 출력 장소
|
* @brief 디버그 메세지의 출력 장소
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,19 @@
|
||||||
* @brief license 메세지 노출
|
* @brief license 메세지 노출
|
||||||
**/
|
**/
|
||||||
function dispInstallIntroduce() {
|
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');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue