Changeset 20929


Ignore:
Timestamp:
2011/05/17 17:07:57 (12 years ago)
Author:
habu
Message:

fix #1308 (LC_Page_Admin_Basis_PaymentInput#lfCheckError コールしていない)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_PaymentInput.php

    r20911 r20929  
    8787            $objFormParam->setParam($_REQUEST); 
    8888            $objFormParam->convParam(); 
    89             $this->arrErr = $objFormParam->checkError(); 
     89            $this->arrErr = $this->lfCheckError($objFormParam); 
    9090            $post = $objFormParam->getHashArray(); 
    9191            $this->charge_flg = $post["charge_flg"]; 
     
    247247 
    248248    /* 入力内容のチェック */ 
    249     function lfCheckError($post) { 
     249    function lfCheckError($objFormParam) { 
    250250 
    251251        // DBのデータを取得 
     
    253253 
    254254        // 手数料を設定できない場合には、手数料を0にする 
    255         if($arrPaymentData["charge_flg"] == 2) $this->objFormParam->setValue('charge', "0"); 
     255        if($arrPaymentData["charge_flg"] == 2) $objFormParam->setValue('charge', "0"); 
    256256 
    257257        // 入力データを渡す。 
    258         $arrRet =  $this->objFormParam->getHashArray(); 
     258        $arrRet =  $objFormParam->getHashArray(); 
    259259        $objErr = new SC_CheckError_Ex($arrRet); 
    260         $objErr->arrErr = $this->objFormParam->checkError(); 
     260        $objErr->arrErr = $objFormParam->checkError(); 
    261261 
    262262        // 利用条件(下限)チェック 
Note: See TracChangeset for help on using the changeset viewer.