Index: /branches/camp/camp-2_5-E/data/class_extends/page_extends/admin/LC_Page_Admin_Index_Ex.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class_extends/page_extends/admin/LC_Page_Admin_Index_Ex.php	(revision 19371)
+++ /branches/camp/camp-2_5-E/data/class_extends/page_extends/admin/LC_Page_Admin_Index_Ex.php	(revision 19371)
@@ -0,0 +1,68 @@
+<?php
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+// {{{ requires
+require_once(CLASS_PATH . "pages/admin/LC_Page_Admin_Index.php");
+
+/**
+ * 管理者ログイン のページクラス(拡張).
+ *
+ * LC_Page_Admin をカスタマイズする場合はこのクラスを編集する.
+ *
+ * @package Page
+ * @author LOCKON CO.,LTD.
+ * @version $Id: LC_Page_Admin_Ex.php 18701 2010-06-14 08:30:18Z nanasess $
+ */
+class LC_Page_Admin_Index_Ex extends LC_Page_Admin_Index {
+
+    // }}}
+    // {{{ functions
+
+    /**
+     * Page を初期化する.
+     *
+     * @return void
+     */
+    function init() {
+        parent::init();
+    }
+
+    /**
+     * Page のプロセス.
+     *
+     * @return void
+     */
+    function process() {
+        parent::process();
+    }
+
+    /**
+     * デストラクタ.
+     *
+     * @return void
+     */
+    function destroy() {
+        parent::destroy();
+    }
+}
+?>
Index: anches/camp/camp-2_5-E/data/class_extends/page_extends/admin/LC_Page_Admin_Ex.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class_extends/page_extends/admin/LC_Page_Admin_Ex.php	(revision 18701)
+++ 	(revision )
@@ -1,68 +1,0 @@
-<?php
-/*
- * This file is part of EC-CUBE
- *
- * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
- *
- * http://www.lockon.co.jp/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- */
-
-// {{{ requires
-require_once(CLASS_PATH . "pages/admin/LC_Page_Admin.php");
-
-/**
- * 管理者ログイン のページクラス(拡張).
- *
- * LC_Page_Admin をカスタマイズする場合はこのクラスを編集する.
- *
- * @package Page
- * @author LOCKON CO.,LTD.
- * @version $Id$
- */
-class LC_Page_Admin_Ex extends LC_Page_Admin {
-
-    // }}}
-    // {{{ functions
-
-    /**
-     * Page を初期化する.
-     *
-     * @return void
-     */
-    function init() {
-        parent::init();
-    }
-
-    /**
-     * Page のプロセス.
-     *
-     * @return void
-     */
-    function process() {
-        parent::process();
-    }
-
-    /**
-     * デストラクタ.
-     *
-     * @return void
-     */
-    function destroy() {
-        parent::destroy();
-    }
-}
-?>
Index: /branches/camp/camp-2_5-E/data/class/pages/LC_Page.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/pages/LC_Page.php	(revision 19341)
+++ /branches/camp/camp-2_5-E/data/class/pages/LC_Page.php	(revision 19371)
@@ -115,5 +115,5 @@
 
     /**
-     * Page のアクション.
+     * Page のレスポンス送信.
      *
      * @return void
Index: /branches/camp/camp-2_5-E/data/class/pages/admin/LC_Page_Admin_Index.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/pages/admin/LC_Page_Admin_Index.php	(revision 19371)
+++ /branches/camp/camp-2_5-E/data/class/pages/admin/LC_Page_Admin_Index.php	(revision 19371)
@@ -0,0 +1,78 @@
+<?php
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+// {{{ requires
+require_once(CLASS_PATH . "pages/admin/LC_Page_Admin.php");
+
+/**
+ * 管理者ログイン のページクラス.
+ *
+ * @package Page
+ * @author LOCKON CO.,LTD.
+ * @version $Id: LC_Page_Admin.php 18701 2010-06-14 08:30:18Z nanasess $
+ */
+class LC_Page_Admin_Index extends LC_Page_Admin {
+
+    // }}}
+    // {{{ functions
+
+    /**
+     * Page を初期化する.
+     *
+     * @return void
+     */
+    function init() {
+        parent::init();
+        $this->tpl_mainpage = 'login.tpl';
+    }
+
+    /**
+     * Page のプロセス.
+     *
+     * @return void
+     */
+    function process() {
+        parent::process();
+        $this->action();
+        $this->sendResponse();
+    }
+
+    /**
+     * Page のアクション.
+     *
+     * @return void
+     */
+    function action() {
+        $this->setTemplate(LOGIN_FRAME);
+    }
+
+    /**
+     * デストラクタ.
+     *
+     * @return void
+     */
+    function destroy() {
+        parent::destroy();
+    }
+}
+?>
Index: /branches/camp/camp-2_5-E/data/class/pages/admin/LC_Page_Admin.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/pages/admin/LC_Page_Admin.php	(revision 18701)
+++ /branches/camp/camp-2_5-E/data/class/pages/admin/LC_Page_Admin.php	(revision 19371)
@@ -44,5 +44,4 @@
     function init() {
         parent::init();
-        $this->tpl_mainpage = 'login.tpl';
     }
 
@@ -53,8 +52,18 @@
      */
     function process() {
-        $objView = new SC_AdminView();
-        $objView->assignobj($this);
-        $objView->display(LOGIN_FRAME);
+        $this->action();
+        $this->sendResponse();
     }
+
+    /**
+     * Page のレスポンス送信.
+     *
+     * @return void
+     */
+    function sendResponse() {
+        $this->objDisplay->hoge($this, true);
+        $this->objDisplay->response->response();
+    }
+
 
     /**
Index: /branches/camp/camp-2_5-E/data/class/SC_Display.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/SC_Display.php	(revision 19193)
+++ /branches/camp/camp-2_5-E/data/class/SC_Display.php	(revision 19371)
@@ -45,7 +45,7 @@
     * @param $page LC_Page
     */
-    function hoge(LC_Page $page){
+    function hoge(LC_Page $page, $is_admin = false){
         if(!$this->deviceSeted || !is_null($this->view)){
-            $device = $this->detectDevice();
+            $device = ($is_admin) ? 8 : $this->detectDevice();
             $this->setDevice($device);
         }
