From c8ca8afeb7e2c21b0d427712d4df4279b129dd8b Mon Sep 17 00:00:00 2001 From: chicpro Date: Wed, 4 Feb 2015 10:00:14 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20include?= =?UTF-8?q?=20=EC=BD=94=EB=93=9C=EC=97=90=20G5=5FSHOP=5FPATH=20=EC=83=81?= =?UTF-8?q?=EC=88=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/index.php | 2 +- shop/shop.head.php | 2 +- shop/shop.tail.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shop/index.php b/shop/index.php index 3b576729a..f2f5a289e 100644 --- a/shop/index.php +++ b/shop/index.php @@ -3,7 +3,7 @@ include_once('./_common.php'); // 초기화면 파일 지정 : 이 코드는 가능한 삭제하지 마십시오. if ($default['de_include_index'] && is_file(G5_SHOP_PATH.'/'.$default['de_include_index'])) { - include_once($default['de_include_index']); + include_once(G5_SHOP_PATH.'/'.$default['de_include_index']); return; // 이 코드의 아래는 실행을 하지 않습니다. } diff --git a/shop/shop.head.php b/shop/shop.head.php index 7b82a0196..a180f4e09 100644 --- a/shop/shop.head.php +++ b/shop/shop.head.php @@ -11,7 +11,7 @@ include_once(G5_LIB_PATH.'/latest.lib.php'); // 상단 파일 지정 : 이 코드는 가능한 삭제하지 마십시오. if ($default['de_include_head'] && is_file(G5_SHOP_PATH.'/'.$default['de_include_head'])) { - include_once($default['de_include_head']); + include_once(G5_SHOP_PATH.'/'.$default['de_include_head']); return; // 이 코드의 아래는 실행을 하지 않습니다. } ?> diff --git a/shop/shop.tail.php b/shop/shop.tail.php index a5dde8f2e..f57fbbad4 100644 --- a/shop/shop.tail.php +++ b/shop/shop.tail.php @@ -3,7 +3,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 // 하단 파일 지정 : 이 코드는 가능한 삭제하지 마십시오. if ($default['de_include_tail'] && is_file(G5_SHOP_PATH.'/'.$default['de_include_tail'])) { - include_once($default['de_include_tail']); + include_once(G5_SHOP_PATH.'/'.$default['de_include_tail']); return; // 이 코드의 아래는 실행을 하지 않습니다. }