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