Index: branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist.php	(revision 21867)
+++ branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist.php	(revision 21883)
@@ -70,5 +70,5 @@
             //--　本登録完了のためにメールから接続した場合
                 //-- 入力チェック
-                $this->arrErr       = $this->lfErrorCheck($_GET);
+                $this->arrErr       = $this->lfCheckError($_GET);
                 if ($this->arrErr) SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, $this->arrErr['id']);
 
@@ -123,5 +123,5 @@
      * @return array エラーの配列
      */
-    function lfErrorCheck($array) {
+    function lfCheckError($array) {
         $objErr     = new SC_CheckError_Ex($array);
 
Index: branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry.php	(revision 21867)
+++ branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry.php	(revision 21883)
@@ -96,5 +96,5 @@
                 if (isset($_POST['submit_address'])) {
                     // 入力エラーチェック
-                    $this->arrErr = $this->fnErrorCheck($_POST);
+                    $this->arrErr = $this->lfCheckError($_POST);
                     // 入力エラーの場合は終了
                     if (count($this->arrErr) == 0) {
@@ -303,5 +303,5 @@
      * @return array $arrErr エラーメッセージ配列
      */
-    function fnErrorCheck($arrRequest) {
+    function lfCheckError($arrRequest) {
         // パラメーター管理クラス
         $objFormParam = new SC_FormParam_Ex();
Index: branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php	(revision 21867)
+++ branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php	(revision 21883)
@@ -95,5 +95,5 @@
                 if (isset($_POST['submit_address'])) {
                     // 入力エラーチェック
-                    $this->arrErr = $this->fnErrorCheck($_POST);
+                    $this->arrErr = $this->lfCheckError($_POST);
                     // 入力エラーの場合は終了
                     if (count($this->arrErr) == 0) {
@@ -192,5 +192,5 @@
      * @return array $arrErr エラーメッセージ配列
      */
-    function fnErrorCheck($arrRequest) {
+    function lfCheckError($arrRequest) {
         // パラメーター管理クラス
         $objFormParam = new SC_FormParam_Ex();
Index: branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 21867)
+++ branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 21883)
@@ -95,5 +95,5 @@
             $objFormParam->convParam();
 
-            $this->arrErr = $this->lfErrorCheck($objFormParam);
+            $this->arrErr = $this->lfCheckError($objFormParam);
             $post = $objFormParam->getHashArray();
 
@@ -263,5 +263,5 @@
 
     // 入力エラーチェック
-    function lfErrorCheck(&$objFormParam) {
+    function lfCheckError(&$objFormParam) {
         $arrErr = $objFormParam->checkError();
         $post = $objFormParam->getHashArray();
Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php	(revision 21867)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php	(revision 21883)
@@ -93,5 +93,5 @@
 
                 // エラーチェック
-                $this->arrErr = $this->lfErrorCheck($this->arrForm, $objFormParam);
+                $this->arrErr = $this->lfCheckError($this->arrForm, $objFormParam);
                 if (count($this->arrErr) <= 0) {
                     if ($this->arrForm['maker_id'] == '') {
@@ -280,5 +280,5 @@
      * @return array $objErr->arrErr エラー内容
      */
-    function lfErrorCheck(&$arrForm, &$objFormParam) {
+    function lfCheckError(&$arrForm, &$objFormParam) {
 
         $arrErr = $objFormParam->checkError();
