Changeset 20929
- Timestamp:
- 2011/05/17 17:07:57 (12 years ago)
- 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 87 87 $objFormParam->setParam($_REQUEST); 88 88 $objFormParam->convParam(); 89 $this->arrErr = $ objFormParam->checkError();89 $this->arrErr = $this->lfCheckError($objFormParam); 90 90 $post = $objFormParam->getHashArray(); 91 91 $this->charge_flg = $post["charge_flg"]; … … 247 247 248 248 /* 入力内容のチェック */ 249 function lfCheckError($ post) {249 function lfCheckError($objFormParam) { 250 250 251 251 // DBのデータを取得 … … 253 253 254 254 // 手数料を設定できない場合には、手数料を0にする 255 if($arrPaymentData["charge_flg"] == 2) $ this->objFormParam->setValue('charge', "0");255 if($arrPaymentData["charge_flg"] == 2) $objFormParam->setValue('charge', "0"); 256 256 257 257 // 入力データを渡す。 258 $arrRet = $ this->objFormParam->getHashArray();258 $arrRet = $objFormParam->getHashArray(); 259 259 $objErr = new SC_CheckError_Ex($arrRet); 260 $objErr->arrErr = $ this->objFormParam->checkError();260 $objErr->arrErr = $objFormParam->checkError(); 261 261 262 262 // 利用条件(下限)チェック
Note: See TracChangeset
for help on using the changeset viewer.