커뮤니티에서 쇼핑몰 head, tail 사용할 수 있도록 하는 설정 추가
This commit is contained in:
@ -1,4 +1,8 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
include_once(G5_SHOP_PATH.'/shop.head.php');
|
||||
|
||||
if(G5_IS_MOBILE)
|
||||
include_once(G5_MSHOP_PATH.'/shop.head.php');
|
||||
else
|
||||
include_once(G5_SHOP_PATH.'/shop.head.php');
|
||||
?>
|
||||
@ -1,4 +1,8 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
include_once(G5_SHOP_PATH.'/shop.tail.php');
|
||||
|
||||
if(G5_IS_MOBILE)
|
||||
include_once(G5_MSHOP_PATH.'/shop.tail.php');
|
||||
else
|
||||
include_once(G5_SHOP_PATH.'/shop.tail.php');
|
||||
?>
|
||||
@ -8,9 +8,6 @@ if (G5_IS_MOBILE) {
|
||||
|
||||
define("_INDEX_", TRUE);
|
||||
|
||||
include_once(G5_LIB_PATH.'/latest.lib.php');
|
||||
include_once(G5_LIB_PATH.'/poll.lib.php');
|
||||
|
||||
include_once(G5_SHOP_PATH.'/shop.head.php');
|
||||
?>
|
||||
|
||||
|
||||
@ -7,6 +7,7 @@ include_once(G5_LIB_PATH.'/poll.lib.php');
|
||||
include_once(G5_LIB_PATH.'/visit.lib.php');
|
||||
include_once(G5_LIB_PATH.'/connect.lib.php');
|
||||
include_once(G5_LIB_PATH.'/popular.lib.php');
|
||||
include_once(G5_LIB_PATH.'/latest.lib.php');
|
||||
?>
|
||||
|
||||
<!-- 상단 시작 { -->
|
||||
|
||||
Reference in New Issue
Block a user