diff --git a/shop/cartsub.inc.php b/shop/cartsub.inc.php
index 532fb2cf1..e14858305 100644
--- a/shop/cartsub.inc.php
+++ b/shop/cartsub.inc.php
@@ -102,7 +102,9 @@ for ($i=0; $row=mysql_fetch_array($result); $i++)
}
$it_name = $a1 . stripslashes($row['it_name']) . $a2 . '
';
- $it_name .= '
'.print_item_options($row['it_id'], $row['it_opt1'], $row['it_opt2'], $row['it_opt3'], $row['it_opt4'], $row['it_opt5'], $row['it_opt6']).'
';
+ if ($row['it_opt1'] || $row['it_opt2'] || $row['it_opt3'] || $row['it_opt4'] || $row['it_opt5'] || $row['it_opt6']) { // 상품에 옵션이 있다면
+ $it_name .= ''.print_item_options($row['it_id'], $row['it_opt1'], $row['it_opt2'], $row['it_opt3'], $row['it_opt4'], $row['it_opt5'], $row['it_opt6']).'
';
+ }
$point = $row['ct_point'] * $row['ct_qty'];
$sell_amount = $row['ct_amount'] * $row['ct_qty'];