Index: branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry_Complete.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry_Complete.php	(revision 19830)
+++ branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry_Complete.php	(revision 19852)
@@ -55,5 +55,4 @@
         }
 
-        $this->tpl_title .= '会員登録(完了ページ)';
         $this->httpCacheControl('nocache');
     }
Index: branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php	(revision 19832)
+++ branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php	(revision 19852)
@@ -56,5 +56,4 @@
     function init() {
         parent::init();
-        $this->tpl_title .= '会員登録(入力ページ)';
         $this->year = "";
         $masterData = new SC_DB_MasterData_Ex();
@@ -70,4 +69,6 @@
         
         $this->httpCacheControl('nocache');
+        
+        $this->isMobile = Net_UserAgent_Mobile::isMobile();
     }
 
@@ -334,5 +335,6 @@
 
     // 会員情報の登録
-    function lfRegistData ($array, $arrRegistColumn, $arrRejectRegistColumn, $confirm_flg, $isMobile = false, $email_mobile = "") {
+    function lfRegistData ($array, $arrRegistColumn, $arrRejectRegistColumn, $confirm_flg) {
+        
         $objQuery = new SC_Query();
 
@@ -393,5 +395,5 @@
         $arrRegist["point"] = $this->CONF["welcome_point"]; // 入会時ポイント
 
-        if ($isMobile) {
+        if ($this->isMobile) {
             // 携帯メールアドレス
             $arrRegist['email_mobile'] = $arrRegist['email'];
@@ -461,5 +463,5 @@
         $objErr->doFunc(array("生年月日", "year", "month", "day"), array("CHECK_BIRTHDAY"));
         
-        if (Net_UserAgent_Mobile::isMobile() === false){
+        if ($this->isMobile === false){
             $objErr->doFunc(array('メールアドレス', "email", MTEXT_LEN) ,array("NO_SPTAB", "EXIST_CHECK", "EMAIL_CHECK", "SPTAB_CHECK" ,"EMAIL_CHAR_CHECK", "MAX_LENGTH_CHECK"));
             $objErr->doFunc(array("FAX番号1", 'fax01'), array("SPTAB_CHECK"));
@@ -518,5 +520,5 @@
     	 * 規約ページからの遷移でなければエラー画面へ遷移する
     	 */ 
-        if (Net_UserAgent_Mobile::isMobile() === FALSE
+        if ($this->isMobile === FALSE
         	 && empty($_POST)
         	 && !preg_match('/kiyaku.php/', basename($_SERVER['HTTP_REFERER']))
