#274 모바일 상품명 적용, it_mobile_name 을 상품테이블에 추가하세요.

This commit is contained in:
gnuboard
2013-08-09 15:17:34 +09:00
parent 88ed9025d1
commit f40891d8d1
9 changed files with 38 additions and 221 deletions

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) {