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/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';
