Changeset 21883 for branches/version-2_12-dev/data/class/pages/admin
- Timestamp:
- 2012/06/02 23:43:27 (14 years ago)
- Location:
- branches/version-2_12-dev/data/class/pages/admin
- Files:
-
- 2 edited
-
basis/LC_Page_Admin_Basis.php (modified) (2 diffs)
-
products/LC_Page_Admin_Products_Maker.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php
r21867 r21883 95 95 $objFormParam->convParam(); 96 96 97 $this->arrErr = $this->lf ErrorCheck($objFormParam);97 $this->arrErr = $this->lfCheckError($objFormParam); 98 98 $post = $objFormParam->getHashArray(); 99 99 … … 263 263 264 264 // 入力エラーチェック 265 function lf ErrorCheck(&$objFormParam) {265 function lfCheckError(&$objFormParam) { 266 266 $arrErr = $objFormParam->checkError(); 267 267 $post = $objFormParam->getHashArray(); -
branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php
r21867 r21883 93 93 94 94 // エラーチェック 95 $this->arrErr = $this->lf ErrorCheck($this->arrForm, $objFormParam);95 $this->arrErr = $this->lfCheckError($this->arrForm, $objFormParam); 96 96 if (count($this->arrErr) <= 0) { 97 97 if ($this->arrForm['maker_id'] == '') { … … 280 280 * @return array $objErr->arrErr エラー内容 281 281 */ 282 function lf ErrorCheck(&$arrForm, &$objFormParam) {282 function lfCheckError(&$arrForm, &$objFormParam) { 283 283 284 284 $arrErr = $objFormParam->checkError();
Note: See TracChangeset
for help on using the changeset viewer.
