Index: /branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping.php	(revision 20490)
+++ /branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping.php	(revision 20496)
@@ -79,5 +79,5 @@
         $objCartSess = new SC_CartSession_Ex();
         $objCustomer = new SC_Customer_Ex();
-        $objCookie = new SC_Cookie();
+        $objCookie = new SC_Cookie_Ex();
         $objPurchase = new SC_Helper_Purchase_Ex();
         $objFormParam = new SC_FormParam();
Index: /branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php	(revision 20490)
+++ /branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php	(revision 20496)
@@ -72,5 +72,5 @@
         $objPurchase = new SC_Helper_Purchase_Ex();
         $objFormParam = new SC_FormParam();
-        $objCookie = new SC_Cookie(COOKIE_EXPIRE);
+        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE);
 
         $this->tpl_uniqid = $objSiteSess->getUniqId();
Index: /branches/version-2_5-dev/data/class/pages/forgot/LC_Page_Forgot.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/forgot/LC_Page_Forgot.php	(revision 20484)
+++ /branches/version-2_5-dev/data/class/pages/forgot/LC_Page_Forgot.php	(revision 20496)
@@ -66,5 +66,5 @@
         $this->httpCacheControl('nocache');
         // デフォルトログインアドレスロード
-        $objCookie = new SC_Cookie(COOKIE_EXPIRE);
+        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE);
         $this->tpl_login_email = $objCookie->getCookie('login_email');        
     }
Index: /branches/version-2_5-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php	(revision 20490)
+++ /branches/version-2_5-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php	(revision 20496)
@@ -68,5 +68,5 @@
         $objCustomer = new SC_Customer_Ex();
         // クッキー管理クラス
-        $objCookie = new SC_Cookie(COOKIE_EXPIRE);
+        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE);
 
         // ログイン判定
Index: /branches/version-2_5-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php	(revision 20490)
+++ /branches/version-2_5-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php	(revision 20496)
@@ -68,5 +68,5 @@
         $objCustomer = new SC_Customer_Ex();
         // クッキー管理クラス
-        $objCookie = new SC_Cookie(COOKIE_EXPIRE);
+        $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE);
         // パラメータ管理クラス
         $objFormParam = new SC_FormParam();
Index: /branches/version-2_5-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php	(revision 20490)
+++ /branches/version-2_5-dev/data/class/pages/mypage/LC_Page_AbstractMypage.php	(revision 20496)
@@ -63,5 +63,5 @@
         if($objCustomer->isLoginSuccess(true) === false) {
             // クッキー管理クラス
-            $objCookie = new SC_Cookie(COOKIE_EXPIRE);
+            $objCookie = new SC_Cookie_Ex(COOKIE_EXPIRE);
             // クッキー判定(メールアドレスをクッキーに保存しているか）
             $this->tpl_login_email = $objCookie->getCookie('login_email');
Index: /branches/version-2_5-dev/data/require_classes.php
===================================================================
--- /branches/version-2_5-dev/data/require_classes.php	(revision 20495)
+++ /branches/version-2_5-dev/data/require_classes.php	(revision 20496)
@@ -47,5 +47,5 @@
 require_once(CLASS_EX_REALDIR . "SC_Customer_Ex.php");
 require_once(CLASS_EX_REALDIR . "SC_CustomerList_Ex.php");
-require_once(CLASS_REALDIR . "SC_Cookie.php");
+require_once(CLASS_EX_REALDIR . "SC_Cookie_Ex.php");
 require_once(CLASS_EX_REALDIR . "SC_MobileUserAgent_Ex.php");
 require_once(CLASS_EX_REALDIR . "SC_SmartphoneUserAgent_Ex.php");
Index: /branches/version-2_5-dev/data/class_extends/SC_Cookie_Ex.php
===================================================================
--- /branches/version-2_5-dev/data/class_extends/SC_Cookie_Ex.php	(revision 20496)
+++ /branches/version-2_5-dev/data/class_extends/SC_Cookie_Ex.php	(revision 20496)
@@ -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_Cookie.php");
+
+class SC_Cookie_Ex extends SC_Cookie {
+}
+
+?>
