Changeset 18049


Ignore:
Timestamp:
2009/06/05 12:54:26 (15 years ago)
Author:
Seasoft
Message:

merge r17790
・取得元: version-2_4
【取得元のログメッセージ】

  • EC-CUBE2.4改修 #376
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r18023 r18049  
    114114            // 入力値の変換 
    115115            $this->objFormParam->convParam(); 
    116             $this->arrErr = $this->lfCheckError($this->arrData, $arrInfo, $objCartSess); 
     116            $this->arrErr = $this->lfCheckError($this->arrData ); 
    117117            // 入力エラーなし 
    118118            if(count($this->arrErr) == 0) { 
     
    239239            // 入力値の変換 
    240240            $this->objFormParam->convParam(); 
    241             $this->arrErr = $this->lfCheckError($this->arrData, $arrInfo, $objCartSess); 
     241            $this->arrErr = $this->lfCheckError($this->arrData); 
    242242            if (!isset($this->arrErr['payment_id'])) { 
    243243                // 支払い方法の入力エラーなし 
     
    255255            // 入力値の変換 
    256256            $this->objFormParam->convParam(); 
    257             $this->arrErr = $this->lfCheckError($this->arrData, $arrInfo, $objCartSess); 
     257            $this->arrErr = $this->lfCheckError($this->arrData ); 
    258258            // 入力エラーなし 
    259259            if(count($this->arrErr) == 0) { 
     
    369369 
    370370    /* 入力内容のチェック */ 
    371     function lfCheckError($arrData, $arrInfo, $objCartSess) { 
     371    function lfCheckError($arrData) { 
    372372        // 入力データを渡す。 
    373373        $arrRet =  $this->objFormParam->getHashArray(); 
     
    397397            } 
    398398        } 
    399          
     399 
     400        $objView = new SC_MobileView(); 
     401        $objSiteInfo = $objView->objSiteInfo; 
     402        $arrInfo = $objSiteInfo->data; 
     403        $objCartSess = new SC_CartSession(); 
     404        $arrInfo = $objSiteInfo->data; 
    400405        // 購入金額の取得得 
    401406        $total_pretax = $objCartSess->getAllProductsTotal($arrInfo); 
     
    412417            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    413418        } 
    414          
     419 
    415420        return $objErr->arrErr; 
    416421    } 
Note: See TracChangeset for help on using the changeset viewer.