Index: branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php	(revision 19868)
+++ branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php	(revision 19897)
@@ -30,5 +30,5 @@
  * @package Page
  * @author LOCKON CO.,LTD.
- * @version $Id:LC_Page_Shopping_Confirm.php 15532 2007-08-31 14:39:46Z nanasess $
+ * @version $Id$
  */
 class LC_Page_Shopping_Confirm extends LC_Page {
@@ -70,7 +70,5 @@
      */
     function action() {
-        $objView = new SC_SiteView();
         $objCartSess = new SC_CartSession();
-        $objSiteInfo = $objView->objSiteInfo;
         $objSiteSess = new SC_SiteSession();
         $objCustomer = new SC_Customer();
@@ -115,5 +113,5 @@
         unset($arrData['deliv_fee']); // FIXME
         // 会員ログインチェック
-        if($objCustomer->isLoginSuccess()) {
+        if($objCustomer->isLoginSuccess(true)) {
             $this->tpl_login = '1';
             $this->tpl_user_point = $objCustomer->getValue('point');
@@ -172,24 +170,4 @@
 
     /**
-     * モバイルページを初期化する.
-     *
-     * @return void
-     */
-    function mobileInit() {
-        $this->init();
-    }
-
-    /**
-     * Page のプロセス(モバイル).
-     *
-     * @return void
-     */
-    function mobileProcess() {
-        parent::mobileProcess();
-        $this->mobileAction();
-        $this->sendResponse();
-    }
-
-    /**
      * Page のアクション(モバイル).
      *
Index: branches/version-2_5-dev/data/class/helper/SC_Helper_Mail.php
===================================================================
--- branches/version-2_5-dev/data/class/helper/SC_Helper_Mail.php	(revision 19773)
+++ branches/version-2_5-dev/data/class/helper/SC_Helper_Mail.php	(revision 19897)
@@ -136,5 +136,9 @@
         $arrTplVar->tpl_user_point = $objCustomer->getValue('point');
 
-        $objMailView = new SC_SiteView();
+       if(Net_UserAgent_Mobile::isMobile() === true) {
+            $objMailView = new SC_MobileView();
+       } else {
+            $objMailView = new SC_SiteView();
+       }
         // メール本文の取得
         $objMailView->assignobj($arrTplVar);
