Ignore:
Timestamp:
2012/03/20 01:48:10 (12 years ago)
Author:
Seasoft
Message:

#1613 (typo修正・ソース整形・ソースコメントの改善)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r21654 r21664  
    317317     */ 
    318318    function lfCheckError(&$objFormParam, $subtotal, $max_point) { 
    319         $objPurchase = new SC_Helper_Purchase_Ex(); 
     319        $objPurchase = new SC_Helper_Purchase_Ex(); 
    320320        // 入力データを渡す。 
    321321        $arrForm =  $objFormParam->getHashArray(); 
     
    340340                $objErr->arrErr['use_point'] = '※ ご利用ポイントがご購入金額を超えています。<br>'; 
    341341            } 
    342             // ポイント差し引き後の決済方法チェック 
    343             $arrPayments = $objPurchase->getPaymentsByPaymentsId($arrForm['payment_id']); 
    344             if ($arrPayments['rule'] > $subtotal - $arrForm['use_point'] * POINT_VALUE){ 
     342            // ポイント差し引き後の決済方法チェック 
     343            $arrPayments = $objPurchase->getPaymentsByPaymentsId($arrForm['payment_id']); 
     344            if ($arrPayments['rule'] > $subtotal - $arrForm['use_point'] * POINT_VALUE) { 
    345345                $objErr->arrErr['use_point'] = '※ 選択した支払方法では、ポイントは'.($subtotal - $arrPayments['rule']).'ポイントまでご利用いただけます。<br>'; 
    346346            } 
    347              
    348347        } 
    349348        return $objErr->arrErr; 
Note: See TracChangeset for help on using the changeset viewer.