Index: /branches/camp/camp-2_5-E/data/class/pages/forgot/LC_Page_Forgot.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/pages/forgot/LC_Page_Forgot.php	(revision 18820)
+++ /branches/camp/camp-2_5-E/data/class/pages/forgot/LC_Page_Forgot.php	(revision 19129)
@@ -65,13 +65,15 @@
      */
     function process() {
+        $this->action();
+        $this->sendResponse();
+    }
+
+    /**
+     * Page のアクション.
+     *
+     * @return void
+     */
+    function action() {
         $objQuery = new SC_Query();
-        $objView = null;
-
-        if (defined("MOBILE_SITE") && MOBILE_SITE) {
-            $objView = new SC_MobileView();
-        } else {
-            $objView = new SC_SiteView(false);
-        }
-
         $objSess = new SC_Session();
 
@@ -175,8 +177,4 @@
             $this->createMobileToken();
         }
-
-        //----　ページ表示
-        $objView->assignobj($this);
-        $objView->display($this->tpl_mainpage);
     }
 
