Index: branches/camp/camp-2_5-E/data/class/pages/cart/LC_Page_Cart.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/cart/LC_Page_Cart.php	(revision 19341)
+++ branches/camp/camp-2_5-E/data/class/pages/cart/LC_Page_Cart.php	(revision 19352)
@@ -136,5 +136,4 @@
                 // 購入ページへ
                 $this->objDisplay->redirect(URL_SHOP_TOP);
-                #$this->sendRedirect(URL_SHOP_TOP);
                 exit;
             }
@@ -198,5 +197,5 @@
         // 買い物を続ける場合
         if ($_REQUEST['mode'] == 'continue') {
-            $this->sendRedirect($this->getLocation(MOBILE_URL_SITE_TOP), true);
+            $this->objDisplay->redirect($this->getLocation(MOBILE_URL_SITE_TOP));
             exit;
         }
@@ -246,5 +245,5 @@
                 $objCartSess->saveCurrentCart($uniqid);
                 // 購入ページへ
-                $this->sendRedirect(MOBILE_URL_SHOP_TOP, true);
+                $this->objDisplay->redirect(MOBILE_URL_SHOP_TOP);
                 exit;
             }
Index: branches/camp/camp-2_5-E/data/class/pages/magazine/LC_Page_Magazine_Confirm.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/magazine/LC_Page_Magazine_Confirm.php	(revision 18701)
+++ branches/camp/camp-2_5-E/data/class/pages/magazine/LC_Page_Magazine_Confirm.php	(revision 19352)
@@ -143,5 +143,5 @@
 
             // 完了ページに移動させる。
-            $this->sendRedirect($this->getLocation("./complete.php",
+            $this->objDisplay->redirect($this->getLocation("./complete.php",
                                 array(session_name() => session_id())));
             exit;
Index: branches/camp/camp-2_5-E/data/class/pages/contact/LC_Page_Contact.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/contact/LC_Page_Contact.php	(revision 19161)
+++ branches/camp/camp-2_5-E/data/class/pages/contact/LC_Page_Contact.php	(revision 19352)
@@ -206,5 +206,5 @@
             $this->lfSendMail($this);
             // 完了ページへ移動する
-            $this->sendRedirect($this->getLocation("./complete.php", array(), true));
+            $this->objDisplay->redirect($this->getLocation("./complete.php", array(), true));
             exit;
         } else {
Index: branches/camp/camp-2_5-E/data/class/pages/regist/LC_Page_Regist.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/regist/LC_Page_Regist.php	(revision 18701)
+++ branches/camp/camp-2_5-E/data/class/pages/regist/LC_Page_Regist.php	(revision 19352)
@@ -86,5 +86,5 @@
                 $etc_val['ci'] = $arrRet[0]['customer_id'];
                 $_SERVER['QUERY_STRING'] = NULL;
-                $this->sendRedirect($this->getLocation("./complete.php", $etc_val));
+                $this->objDisplay->redirect($this->getLocation("./complete.php", $etc_val));
                 exit;
             }
@@ -138,5 +138,5 @@
                 $email = $objQuery->get("dtb_customer", "email", "secret_key = ?", array($registSecretKey));
                 $objCustomer->setLogin($email);
-                $this->sendRedirect($this->getLocation("./complete.php"), true);
+                $this->objDisplay->redirect($this->getLocation("./complete.php"));
                 exit;
             }
Index: branches/camp/camp-2_5-E/data/class/pages/entry/LC_Page_Entry.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/entry/LC_Page_Entry.php	(revision 19341)
+++ branches/camp/camp-2_5-E/data/class/pages/entry/LC_Page_Entry.php	(revision 19352)
@@ -336,5 +336,5 @@
                     // 完了ページに移動させる。
                     $customer_id = $objQuery->get("dtb_customer", "customer_id", "secret_key = ?", array($this->uniqid));
-                    $this->sendRedirect($this->getLocation("./complete.php", array("ci" => $customer_id)));
+                    $this->objDisplay->redirect($this->getLocation("./complete.php", array("ci" => $customer_id)));
                     exit;
                 }
@@ -592,5 +592,5 @@
                                        "id" => $this->uniqid,
                                        session_name() => session_id());
-                        $this->sendRedirect($this->getLocation(MOBILE_URL_DIR . "regist/" . DIR_INDEX_URL, $param));
+                        $this->objDisplay->redirect($this->getLocation(MOBILE_URL_DIR . "regist/" . DIR_INDEX_URL, $param));
                         exit;
                     }
@@ -640,5 +640,5 @@
 
                     // 完了ページに移動させる。
-                    $this->sendRedirect($this->getLocation("./complete.php"), true);
+                    $this->objDisplay->redirect($this->getLocation("./complete.php"));
                     exit;
                 }
Index: branches/camp/camp-2_5-E/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php	(revision 19341)
+++ branches/camp/camp-2_5-E/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php	(revision 19352)
@@ -106,5 +106,5 @@
             if(count($arrErr) == 0) {
                 if($objCustomer->getCustomerDataFromEmailPass($arrForm['login_pass'], $arrForm['login_email'], true)) {
-                    $this->sendRedirect($this->getLocation(URL_DIR, array(), false));
+                    $this->objDisplay->redirect($this->getLocation(URL_DIR, array(), false));
                     exit;
                 } else {
@@ -122,5 +122,5 @@
             } else {
                 // 入力エラーの場合、元のアドレスに戻す。
-                $this->sendRedirect($this->getLocation($_POST['url'], array(), false));
+                $this->objDisplay->redirect($this->getLocation($_POST['url'], array(), false));
                 exit;
             }
@@ -132,7 +132,7 @@
             //マイページログイン中はログイン画面へ移行
             if ($mypage_url_search == 2){
-                $this->sendRedirect($this->getLocation(URL_DIR . "mypage/login.php", array(), false));
+                $this->objDisplay->redirect($this->getLocation(URL_DIR . "mypage/login.php", array(), false));
             }else{
-                $this->sendRedirect($this->getLocation(URL_DIR, array(), false));
+                $this->objDisplay->redirect($this->getLocation(URL_DIR, array(), false));
             }
             exit;
Index: branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_Detail.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_Detail.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_Detail.php	(revision 19352)
@@ -227,10 +227,10 @@
                         $objCartSess->saveCurrentCart($objSiteSess->getUniqId());
 
-                        $this->sendRedirect($this->getLocation(
+                        $this->objDisplay->redirect($this->getLocation(
                             URL_DIR . 'user_data/gmopg_oneclick_confirm.php', array(), true));
                         exit;
                     }
 
-                    $this->sendRedirect($this->getLocation(URL_CART_TOP));
+                    $this->objDisplay->redirect($this->getLocation(URL_CART_TOP));
                     exit;
                 }
@@ -440,5 +440,5 @@
 
                 $objCartSess->addProduct(array($_POST['product_id'], $product_class_id, $classcategory_id1, $classcategory_id2), $this->objFormParam->getValue('quantity'));
-                $this->sendRedirect($this->getLocation(MOBILE_URL_CART_TOP), true);
+                $this->objDisplay->redirect($this->getLocation(MOBILE_URL_CART_TOP));
                 exit;
             }
Index: branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_List.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_List.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_List.php	(revision 19352)
@@ -170,5 +170,5 @@
                 $objCartSess = new SC_CartSession();
                 $objCartSess->addProduct($product_class_id, $this->arrForm['quantity'], $product_type);
-                $this->sendRedirect($this->getLocation(URL_CART_TOP));
+                $this->objDisplay->redirect($this->getLocation(URL_CART_TOP));
                 exit;
             }
Index: branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_Review.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_Review.php	(revision 19341)
+++ branches/camp/camp-2_5-E/data/class/pages/products/LC_Page_Products_Review.php	(revision 19352)
@@ -154,5 +154,5 @@
                     $this->lfRegistRecommendData($arrForm, $arrRegistColumn);
                     //レビュー書き込み完了ページへ
-                    $this->sendRedirect($this->getLocation("./review_complete.php", array(), true));
+                    $this->objDisplay->redirect($this->getLocation("./review_complete.php", array(), true));
                     exit;
                 }
Index: branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Login.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Login.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Login.php	(revision 19352)
@@ -76,5 +76,5 @@
         // ログイン判定
         if($objCustomer->isLoginSuccess()) {
-            $this->sendRedirect($this->getLocation(DIR_INDEX_URL, array(), true));
+            $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL, array(), true));
             exit;
         } else {
Index: branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Order.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Order.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Order.php	(revision 19352)
@@ -83,5 +83,5 @@
             $objCartSess->addProduct(array($product_id, $product_class_id, $cate_id1, $cate_id2), $quantity);
         }
-        $this->sendRedirect($this->getLocation(URL_CART_TOP));
+        $this->objDisplay->redirect($this->getLocation(URL_CART_TOP));
     }
 
@@ -133,5 +133,5 @@
             $objCartSess->addProduct(array($product_id, $product_class_id, $cate_id1, $cate_id2), $quantity);
         }
-        $this->sendRedirect($this->getLocation(MOBILE_URL_CART_TOP), true);
+        $this->objDisplay->redirect($this->getLocation(MOBILE_URL_CART_TOP));
     }
 
Index: branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Favorite.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Favorite.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Favorite.php	(revision 19352)
@@ -220,5 +220,5 @@
                     if (!$objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) {
                         if (!$objCustomer->hasValue('email_mobile')) {
-                            $this->sendRedirect($this->getLocation("../entry/email_mobile.php"), true);
+                            $this->objDisplay->redirect($this->getLocation("../entry/email_mobile.php"));
                         }
                     }
Index: branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage.php	(revision 19352)
@@ -204,5 +204,5 @@
                     if (!$objMobile->gfIsMobileMailAddress($objCustomer->getValue('email'))) {
                         if (!$objCustomer->hasValue('email_mobile')) {
-                            $this->sendRedirect($this->getLocation("../entry/email_mobile.php"), true);
+                            $this->objDisplay->redirect($this->getLocation("../entry/email_mobile.php"));
                             exit;
                         }
Index: branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Refusal.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Refusal.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Refusal.php	(revision 19352)
@@ -117,5 +117,5 @@
             $objCustomer->EndSession();
             //完了ページへ
-            $this->sendRedirect($this->getLocation("./refusal_complete.php"));
+            $this->objDisplay->redirect($this->getLocation("./refusal_complete.php"));
             exit;
         }
@@ -170,5 +170,5 @@
 
         if (isset($_POST['no'])) {
-            $this->sendRedirect($this->getLocation(DIR_INDEX_URL), true);
+            $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL));
             exit;
         } elseif (isset($_POST['complete'])){
@@ -179,5 +179,5 @@
             $objCustomer->EndSession();
             //完了ページへ
-            $this->sendRedirect($this->getLocation("./refusal_complete.php"), true);
+            $this->objDisplay->redirect($this->getLocation("./refusal_complete.php"));
             exit;
         }
Index: branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Change.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Change.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_Change.php	(revision 19352)
@@ -191,5 +191,5 @@
 
                 //完了ページへ
-                $this->sendRedirect($this->getLocation("./change_complete.php"));
+                $this->objDisplay->redirect($this->getLocation("./change_complete.php"));
                 exit;
             } else {
@@ -408,5 +408,5 @@
                         $this->objCustomer->updateSession();
                         //完了ページへ
-                        $this->sendRedirect($this->getLocation("./change_complete.php"), true);
+                        $this->objDisplay->redirect($this->getLocation("./change_complete.php"));
                         exit;
                     } else {
Index: branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php
===================================================================
--- branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php	(revision 19227)
+++ branches/camp/camp-2_5-E/data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php	(revision 19352)
@@ -101,5 +101,5 @@
 
             if($objCustomer->getCustomerDataFromEmailPass($arrForm['mypage_login_pass'], $arrForm['mypage_login_email'], true)) {
-                $this->sendRedirect($this->getLocation(DIR_INDEX_URL, array(), true));
+                $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL, array(), true));
                 exit;
             } else {
