옵션 출력 코드 수정

This commit is contained in:
chicpro
2016-05-02 11:01:55 +09:00
parent 23b996d9f8
commit 0c6e13eff4

View File

@ -1101,7 +1101,7 @@ function print_item_options($it_id, $cart_id)
$price_plus = ''; $price_plus = '';
if($row['io_price'] >= 0) if($row['io_price'] >= 0)
$price_plus = '+'; $price_plus = '+';
$str .= '<li>'.$row['ct_option'].' '.$row['ct_qty'].'개 ('.$price_plus.display_price($row['io_price']).')</li>'.PHP_EOL; $str .= '<li>'.get_text($row['ct_option']).' '.$row['ct_qty'].'개 ('.$price_plus.display_price($row['io_price']).')</li>'.PHP_EOL;
} }
if($i > 0) if($i > 0)