Merge branch 'master' of github.com:gnuboard/yc4s
This commit is contained in:
@ -512,7 +512,7 @@ input.required:focus {border:1px solid #b8c9c2;background:#21272e !important;col
|
|||||||
#sit_btn_rec {background:#888;color:#fff}
|
#sit_btn_rec {background:#888;color:#fff}
|
||||||
|
|
||||||
/* 상품 상세보기 - 다른 상품 보기 */
|
/* 상품 상세보기 - 다른 상품 보기 */
|
||||||
#sit_siblings {}
|
#sit_siblings {margin:0 0 10px;padding:10px 10px 20px;border-bottom:1px solid #e9e9e9;text-align:center}
|
||||||
#sit_siblings h2 {position:absolute;font-size:0;line-height:0;content:""}
|
#sit_siblings h2 {position:absolute;font-size:0;line-height:0;content:""}
|
||||||
|
|
||||||
/* 상품 상세보기 - 상품정보 */
|
/* 상품 상세보기 - 상품정보 */
|
||||||
|
|||||||
@ -102,9 +102,9 @@ $sql = " select it_id, it_name from {$g4['shop_item_table']}
|
|||||||
limit 1 ";
|
limit 1 ";
|
||||||
$row = sql_fetch($sql);
|
$row = sql_fetch($sql);
|
||||||
if ($row['it_id']) {
|
if ($row['it_id']) {
|
||||||
$prev_title = '이전상품보기 '.$row['it_name'];
|
$prev_title = '이전상품<span class="sound_only"> '.$row['it_name'].'</span>';
|
||||||
$prev_href = '<a href="./item.php?it_id='.$row['it_id'].'">';
|
$prev_href = '<a href="./item.php?it_id='.$row['it_id'].'" class="btn01">';
|
||||||
$prev_href = '</a>';
|
$prev_href2 = '</a>'.PHP_EOL;
|
||||||
} else {
|
} else {
|
||||||
$prev_title = '';
|
$prev_title = '';
|
||||||
$prev_href = '';
|
$prev_href = '';
|
||||||
@ -120,9 +120,9 @@ $sql = " select it_id, it_name from {$g4['shop_item_table']}
|
|||||||
limit 1 ";
|
limit 1 ";
|
||||||
$row = sql_fetch($sql);
|
$row = sql_fetch($sql);
|
||||||
if ($row['it_id']) {
|
if ($row['it_id']) {
|
||||||
$next_title = '다음 상품 '.$row['it_name'];
|
$next_title = '다음 상품<span class="sound_only"> '.$row['it_name'].'</span>';
|
||||||
$next_href = '<a href="./item.php?it_id='.$row['it_id'].'">';
|
$next_href = '<a href="./item.php?it_id='.$row['it_id'].'" class="btn01">';
|
||||||
$next_href2 = '</a>';
|
$next_href2 = '</a>'.PHP_EOL;
|
||||||
} else {
|
} else {
|
||||||
$next_title = '';
|
$next_title = '';
|
||||||
$next_href = '';
|
$next_href = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user