스킨 파일 및 이미지 경로 수정
This commit is contained in:
@ -37,10 +37,10 @@ if ($skin)
|
||||
$list_file = G5_SHOP_SKIN_PATH."/{$ev['ev_skin']}";
|
||||
if (file_exists($list_file))
|
||||
{
|
||||
include G5_SHOP_PATH.'/list.sort.php';
|
||||
include G5_SHOP_SKIN_PATH.'/list.sort.skin.php';
|
||||
|
||||
// 상품 보기 타입 변경 버튼
|
||||
include G5_SHOP_PATH.'/list.sub.php';
|
||||
include G5_SHOP_SKIN_PATH.'/list.sub.skin.php';
|
||||
|
||||
// 총몇개 = 한줄에 몇개 * 몇줄
|
||||
$items = $ev['ev_list_mod'] * $ev['ev_list_row'];
|
||||
@ -83,7 +83,7 @@ if ($i==0)
|
||||
|
||||
<?php
|
||||
// 상품 보기 타입 변경 처리 스크립트
|
||||
include G5_SHOP_PATH.'/list.sub2.php';
|
||||
include G5_SHOP_SKIN_PATH.'/list.sub2.skin.php';
|
||||
|
||||
$qstr .= 'skin='.$skin.'&ev_id='.$ev_id.'&sort='.$sort.'&sortodr='.$sortodr;
|
||||
echo get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page=");
|
||||
|
||||
@ -34,7 +34,7 @@ if ($sort != '')
|
||||
$error = '<img src="'.G5_SHOP_URL.'/img/no_item.gif">';
|
||||
|
||||
if (!$skin)
|
||||
$skin = "list.10.skin.php";
|
||||
$skin = 'list.10.skin.php';
|
||||
|
||||
// 리스트 유형별로 출력
|
||||
$list_file = G5_SHOP_SKIN_PATH.'/'.$skin;
|
||||
@ -48,7 +48,7 @@ if (file_exists($list_file)) {
|
||||
|
||||
$list = new item_list();
|
||||
$list->set_type($type);
|
||||
$list->set_list_skin('list.10.skin.php');
|
||||
$list->set_list_skin($skin);
|
||||
$list->set_list_mod($list_mod);
|
||||
$list->set_list_row($list_row);
|
||||
$list->set_img_size($img_width, $img_height);
|
||||
|
||||
Reference in New Issue
Block a user