Index: branches/version-2_5-dev/data/class/pages/unsupported/LC_Page_Unsupported.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/unsupported/LC_Page_Unsupported.php	(revision 19807)
+++ branches/version-2_5-dev/data/class/pages/unsupported/LC_Page_Unsupported.php	(revision 19810)
@@ -44,5 +44,5 @@
     function init() {
         parent::init();
-        $this->tpl_mainpage = TEMPLATE_REALDIR . 'mobile/unsupported/index.tpl';
+        $this->tpl_title = '未対応デバイス';
     }
 
@@ -53,10 +53,11 @@
      */
     function process() {
-        $objView = new SC_MobileView();
-
-        $objView->assignobj($this);
-        $objView->display($this->tpl_mainpage);
+        parent::process();
+        $this->action();
+        $this->sendResponse();
     }
 
+    function action() {}
+    
     /**
      * デストラクタ.
Index: branches/version-2_5-dev/data/class/helper/SC_Helper_Mobile.php
===================================================================
--- branches/version-2_5-dev/data/class/helper/SC_Helper_Mobile.php	(revision 19805)
+++ branches/version-2_5-dev/data/class/helper/SC_Helper_Mobile.php	(revision 19810)
@@ -37,5 +37,5 @@
     /**
      * EC-CUBE がサポートする携帯端末かどうかをチェックする。
-     * 非対応端末の場合は /mobile/unsupported/ へリダイレクトする。
+     * 非対応端末の場合は /unsupported/ へリダイレクトする。
      *
      * @return void
@@ -43,5 +43,5 @@
     function lfMobileCheckCompatibility() {
         if (!SC_MobileUserAgent::isSupported()) {
-            header('Location: ' . URL_PATH . 'mobile/unsupported/' . DIR_INDEX_URL);
+            header('Location: ' . URL_PATH . 'unsupported/' . DIR_INDEX_URL);
             exit;
         }
