display_type 및 이미지 경로 수정

This commit is contained in:
gnuboard
2013-07-23 18:10:32 +09:00
parent 318c868274
commit 81a39773d1
247 changed files with 334 additions and 272 deletions

View File

@ -56,6 +56,14 @@ define(_MISU_QUERY_, "
// 쇼핑몰 설정값 배열변수
$default = sql_fetch(" select * from {$g4['shop_default_table']} ");
if (G4_IS_MOBILE) {
$shop_skin_path = G4_MOBILE_PATH.'/'.G4_SKIN_DIR.'/shop/'.$default['de_shop_mobile_skin'];
$shop_skin_url = G4_MOBILE_URL .'/'.G4_SKIN_DIR.'/shop/'.$default['de_shop_mobile_skin'];
} else {
$shop_skin_path = G4_PATH.'/'.G4_SKIN_DIR.'/shop/'.$default['de_shop_mobile_skin'];
$shop_skin_url = G4_URL .'/'.G4_SKIN_DIR.'/shop/'.$default['de_shop_mobile_skin'];
}
//==============================================================================
// 쇼핑몰 필수 실행코드 모음 끝
//==============================================================================