| 패치 방법 : 아래 소스를 찾아 붉은 색 부분을 추가해 
                    줍니다.
 패치 후 조치사항 : "관리자페이지 > 기본정보 > 몰 초기화" 관리 메뉴에서 
                    "장바구니 삭제" 기능을 실행합니다. 삭제 된 데이터는 복구되지 
                    않으니 다른 데이터를 삭제하지 않도록 유의하시기 바랍니다.     // 장바구니 가격 체크$cart_result = 
                    $MySQL->query("SELECT * from cart WHERE 
                    userid='$_SESSION[GOOD_SHOP_USERID]'");
 while ($cart_row = 
                    mysql_fetch_array($cart_result))
 {
 $goods_info_row 
                    = $MySQL->fetch_array("select * from goods where 
                    idx=$cart_row[goodsIdx] limit 1"); 
                    //상품정보
 $gprice = new 
                    CGoodsPrice($goods_info_row[idx]);
 $price 
                    = $gprice->Price();
 $point = 
                    $gprice->PutPoint()*$cart_row[cnt];
 $total_option_str 
                    = 
                    explode("/",$cart_row[option4]);
 $option_arr 
                    = explode("」「",$total_option_str[1]);
 $total_option_price = 
                    0;
 for ($i=0; 
                    $i<count($option_arr); 
                    $i++)
 {
 $detail_option 
                    = explode("|",$option_arr[$i]); ///  옵션내용||가격
 $option_price = 
                    $detail_option[1];//가격
 $total_option_price+= 
                    $option_price;
 }
 $price 
                    = $price + $total_option_price;
 |