사용자 추가한 include 파일이 먼저 실행되도록 수정
This commit is contained in:
10
index.php
10
index.php
@ -2,11 +2,6 @@
|
||||
define('_INDEX_', true);
|
||||
include_once('./_common.php');
|
||||
|
||||
if (G5_IS_MOBILE) {
|
||||
include_once(G5_MOBILE_PATH.'/index.php');
|
||||
return;
|
||||
}
|
||||
|
||||
// 초기화면 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오.
|
||||
if ($config['cf_include_index']) {
|
||||
if (!@include_once($config['cf_include_index'])) {
|
||||
@ -15,6 +10,11 @@ if ($config['cf_include_index']) {
|
||||
return; // 이 코드의 아래는 실행을 하지 않습니다.
|
||||
}
|
||||
|
||||
if (G5_IS_MOBILE) {
|
||||
include_once(G5_MOBILE_PATH.'/index.php');
|
||||
return;
|
||||
}
|
||||
|
||||
include_once('./_head.php');
|
||||
?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user