쇼핑몰관리자: 분류관리 분류명 입력 스타일 수정 및 table -> ul 변경 작업 중

This commit is contained in:
whitedot
2013-12-02 15:14:19 +09:00
parent 4c14444ff1
commit 3e19226de2
13 changed files with 240 additions and 216 deletions

View File

@ -69,7 +69,7 @@ $sql = " select it_id, it_name from {$g5['g5_shop_item_table']}
$row = sql_fetch($sql);
if ($row['it_id']) {
$prev_title = '이전상품 <span>'.$row['it_name'].'</span>';
$prev_href = '<a href="'.G5_SHOP_URL.'/item.php?it_id='.$row['it_id'].'">';
$prev_href = '<a href="'.G5_SHOP_URL.'/item.php?it_id='.$row['it_id'].'" id="siblings_prev">';
$prev_href2 = '</a>';
} else {
$prev_title = '';
@ -87,7 +87,7 @@ $sql = " select it_id, it_name from {$g5['g5_shop_item_table']}
$row = sql_fetch($sql);
if ($row['it_id']) {
$next_title = '다음 상품 <span>'.$row['it_name'].'</span>';
$next_href = '<a href="'.G5_SHOP_URL.'/item.php?it_id='.$row['it_id'].'">';
$next_href = '<a href="'.G5_SHOP_URL.'/item.php?it_id='.$row['it_id'].'" id="siblings_next">';
$next_href2 = '</a>';
} else {
$next_title = '';