초기화면 등의 파일 설정 기능 수정

This commit is contained in:
chicpro
2015-01-28 10:01:36 +09:00
parent be27a72d86
commit 78d87038aa
4 changed files with 9 additions and 15 deletions

View File

@ -2,10 +2,8 @@
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 하단 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오.
if ($config['cf_include_tail']) {
if (!@include_once($config['cf_include_tail'])) {
die('기본환경 설정에서 하단 파일 경로가 잘못 설정되어 있습니다.');
}
if ($config['cf_include_tail'] && is_file(G5_PATH.'/'.$config['cf_include_tail']) {
include_once($config['cf_include_tail']);
return; // 이 코드의 아래는 실행을 하지 않습니다.
}