18 lines
424 B
PHP
18 lines
424 B
PHP
<?php
|
|
include_once('./_common.php');
|
|
|
|
if (G5_IS_MOBILE) {
|
|
include_once(G5_MSHOP_PATH.'/itemuse.php');
|
|
return;
|
|
}
|
|
|
|
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
|
|
|
$itemuse_skin = G5_SHOP_SKIN_PATH.'/itemuse.skin.php';
|
|
|
|
if(!file_exists($itemuse_skin)) {
|
|
echo str_replace(G5_PATH.'/', '', $itemuse_skin).' 스킨 파일이 존재하지 않습니다.';
|
|
} else {
|
|
include_once($itemuse_skin);
|
|
}
|
|
?>
|