#177 에 따른 모바일 쇼핑몰 코드 수정

This commit is contained in:
chicpro
2013-05-14 17:04:57 +09:00
parent 96256a9b63
commit 1ce38428a3
10 changed files with 67 additions and 54 deletions

View File

@ -93,11 +93,11 @@ 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>';
$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;