Index: /branches/version-2_5-dev/data/class/pages/preview/LC_Page_Preview.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/preview/LC_Page_Preview.php	(revision 20344)
+++ /branches/version-2_5-dev/data/class/pages/preview/LC_Page_Preview.php	(revision 20449)
@@ -53,5 +53,5 @@
     function process() {
         $objView = new SC_SiteView_Ex();
-        $objSess = new SC_Session();
+        $objSess = new SC_Session_Ex();
 
         SC_Utils_Ex::sfIsSuccess($objSess);
Index: /branches/version-2_5-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php	(revision 20344)
+++ /branches/version-2_5-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php	(revision 20449)
@@ -75,5 +75,5 @@
 
     function isLoggedInAdminPage() {
-        $objSess = new SC_Session;
+        $objSess = new SC_Session_Ex();
 
         if ($objSess->isSuccess() === SUCCESS) {
Index: /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Index.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Index.php	(revision 20345)
+++ /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Index.php	(revision 20449)
@@ -184,5 +184,5 @@
      */
     function lfSetLoginSession($member_id, $login_id, $authority, $login_name, $last_login) {
-        $objSess = new SC_Session();
+        $objSess = new SC_Session_Ex();
         // 認証済みの設定
         $objSess->SetSession('cert', CERT_STRING);
Index: /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Logout.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Logout.php	(revision 20345)
+++ /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Logout.php	(revision 20449)
@@ -72,5 +72,5 @@
      */
     function lfDoLogout() {
-        $objSess = new SC_Session();
+        $objSess = new SC_Session_Ex();
         $objSess->logout();
     }
Index: /branches/version-2_5-dev/data/class/pages/products/LC_Page_Products_Detail.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/products/LC_Page_Products_Detail.php	(revision 20444)
+++ /branches/version-2_5-dev/data/class/pages/products/LC_Page_Products_Detail.php	(revision 20449)
@@ -287,5 +287,5 @@
         // 管理機能からの確認の場合は、非公開の商品も表示する。
         if (isset($admin_mode) && $admin_mode == 'on') {
-            SC_Utils_Ex::sfIsSuccess(new SC_Session());
+            SC_Utils_Ex::sfIsSuccess(new SC_Session_Ex());
             $status = true;
             $where = 'del_flg = 0';
Index: /branches/version-2_5-dev/data/class/helper/SC_Helper_Session.php
===================================================================
--- /branches/version-2_5-dev/data/class/helper/SC_Helper_Session.php	(revision 20384)
+++ /branches/version-2_5-dev/data/class/helper/SC_Helper_Session.php	(revision 20449)
@@ -241,5 +241,5 @@
             }
             if ($is_auth) {
-                SC_Utils_Ex::sfIsSuccess(new SC_Session());
+                SC_Utils_Ex::sfIsSuccess(new SC_Session_Ex());
             }
         }
Index: /branches/version-2_5-dev/data/require_classes.php
===================================================================
--- /branches/version-2_5-dev/data/require_classes.php	(revision 20448)
+++ /branches/version-2_5-dev/data/require_classes.php	(revision 20449)
@@ -33,5 +33,5 @@
 require_once(CLASS_EX_REALDIR . "SC_MobileView_Ex.php");
 require_once(CLASS_EX_REALDIR . "SC_SmartphoneView_Ex.php");
-require_once(CLASS_REALDIR . "SC_Session.php");
+require_once(CLASS_EX_REALDIR . "SC_Session_Ex.php");
 require_once(CLASS_REALDIR . "SC_Query.php");
 require_once(CLASS_REALDIR . "SC_SelectSql.php");
Index: /branches/version-2_5-dev/data/class_extends/SC_Session_Ex.php
===================================================================
--- /branches/version-2_5-dev/data/class_extends/SC_Session_Ex.php	(revision 20449)
+++ /branches/version-2_5-dev/data/class_extends/SC_Session_Ex.php	(revision 20449)
@@ -0,0 +1,29 @@
+<?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.
+ */
+
+require_once(CLASS_REALDIR . "SC_Session.php");
+
+class SC_Session_Ex extends SC_Session {
+}
+
+?>
