From b34d31f6a742fb40334a3302df0b4f6c985af55d Mon Sep 17 00:00:00 2001 From: chicpro Date: Wed, 28 Jan 2015 10:35:36 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=BD=EB=A1=9C=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- head.php | 2 +- index.php | 2 +- tail.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/head.php b/head.php index ddbf6470c..0a889c69e 100644 --- a/head.php +++ b/head.php @@ -10,7 +10,7 @@ include_once(G5_LIB_PATH.'/connect.lib.php'); include_once(G5_LIB_PATH.'/popular.lib.php'); // 상단 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오. -if ($config['cf_include_head'] && is_file(G5_PATH.'/'.$config['cf_include_head']) { +if ($config['cf_include_head'] && is_file(G5_PATH.'/'.$config['cf_include_head'])) { include_once($config['cf_include_head']); return; // 이 코드의 아래는 실행을 하지 않습니다. } diff --git a/index.php b/index.php index 2ba266fb5..8506516af 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ define('_INDEX_', true); include_once('./_common.php'); // 초기화면 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오. -if ($config['cf_include_index'] && is_file(G5_PATH.'/'.$config['cf_include_index']) { +if ($config['cf_include_index'] && is_file(G5_PATH.'/'.$config['cf_include_index'])) { include_once($config['cf_include_index']); return; // 이 코드의 아래는 실행을 하지 않습니다. } diff --git a/tail.php b/tail.php index 2d9b119de..e020a1b11 100644 --- a/tail.php +++ b/tail.php @@ -2,7 +2,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // 하단 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오. -if ($config['cf_include_tail'] && is_file(G5_PATH.'/'.$config['cf_include_tail']) { +if ($config['cf_include_tail'] && is_file(G5_PATH.'/'.$config['cf_include_tail'])) { include_once($config['cf_include_tail']); return; // 이 코드의 아래는 실행을 하지 않습니다. }