일부 모바일 페이지에서 테마 파일 체크 오류 수정
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
include_once('./_common.php');
|
||||
|
||||
// 테마에 mypage.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_mypage_file = G5_THEME_MSHOP_PATH.'/mypage.php';
|
||||
if(is_file($theme_mypage_file)) {
|
||||
include_once($theme_mypage_file);
|
||||
|
||||
@ -4,7 +4,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
if (!defined("_ORDERINQUIRY_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// 테마에 orderinquiry.sub.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_inquiry_file = G5_THEME_MSHOP_PATH.'/orderinquiry.sub.php';
|
||||
if(is_file($theme_inquiry_file)) {
|
||||
include_once($theme_inquiry_file);
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
include_once('./_common.php');
|
||||
|
||||
// 테마에 orderinquiryview.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_inquiryview_file = G5_THEME_MSHOP_PATH.'/orderinquiryview.php';
|
||||
if(is_file($theme_inquiryview_file)) {
|
||||
include_once($theme_inquiryview_file);
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
include_once('./_common.php');
|
||||
|
||||
// 테마에 wishlist.php 있으면 include
|
||||
if(defined('G5_THEME_SHOP_PATH')) {
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_wishlist_file = G5_THEME_MSHOP_PATH.'/wishlist.php';
|
||||
if(is_file($theme_wishlist_file)) {
|
||||
include_once($theme_wishlist_file);
|
||||
|
||||
Reference in New Issue
Block a user