모바일 상품명 출력 코드 추가

This commit is contained in:
chicpro
2013-08-16 11:07:48 +09:00
parent 6584875178
commit cacbf7ce53

View File

@ -38,7 +38,11 @@ for ($i=1; $row=sql_fetch_array($result); $i++) {
}
if ($this->view_it_name) {
echo "<b>".stripslashes($row['it_name'])."</b>\n";
$it_name = $row['it_name'];
if ($this->is_mobile && $row['it_mobile_name']) {
$it_name = $row['it_mobile_name'];
}
echo "<b>".stripslashes($it_name)."</b>\n";
}
if ($this->view_it_cust_price) {