#177 에 따른 PC 쇼핑몰 코드 수정
This commit is contained in:
@ -92,13 +92,13 @@ for ($i=0; $row=mysql_fetch_array($result); $i++)
|
||||
}
|
||||
|
||||
if ($s_page == 'cart.php' || $s_page == 'orderinquiryview.php') { // 링크를 붙이고
|
||||
$a1 = '<a href="./item.php?it_id='.$row[it_id].'"><b>';
|
||||
$a1 = '<a href="./item.php?it_id='.$row['it_id'].'"><b>';
|
||||
$a2 = '</b></a>';
|
||||
$image = get_it_image($row['it_id'].'_s', 70, 70, '');
|
||||
$image = get_it_image($row['it_id'], 70, 70);
|
||||
} else { // 붙이지 않고
|
||||
$a1 = '<b>';
|
||||
$a2 = '</b>';
|
||||
$image = get_it_image($row['it_id'].'_s', 50, 50);
|
||||
$image = get_it_image($row['it_id'], 50, 50);
|
||||
}
|
||||
|
||||
$it_name = $a1 . stripslashes($row['it_name']) . $a2;
|
||||
|
||||
Reference in New Issue
Block a user