Changeset 16398


Ignore:
Timestamp:
2007/10/12 18:18:43 (17 years ago)
Author:
nanasess
Message:

リファクタリング

Location:
branches/feature-module-update/data/class/pages
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/entry/LC_Page_Entry.php

    r16380 r16398  
    514514 
    515515                    // 完了ページに移動させる。 
    516                     $this->sendRedirect($this->getLocation("./complete.php", 
    517                                                            SC_Helper_Mobile_Ex::sessionIdArray())); 
     516                    $this->sendRedirect($this->getLocation("./complete.php"), true); 
    518517                    exit; 
    519518                } 
  • branches/feature-module-update/data/class/pages/mypage/LC_Page_Mypage_Refusal.php

    r16238 r16398  
    126126 
    127127        if (isset($_POST['no'])) { 
    128             $this->sendRedirect($this->getLocation(SC_Helper_Mobile_Ex::gfAddSessionId("index.php"))); 
     128            $this->sendRedirect($this->getLocation("./index.php"), true); 
    129129            exit; 
    130130        } elseif (isset($_POST['complete'])){ 
     
    135135            $objCustomer->EndSession(); 
    136136            //完了ページへ 
    137             $this->sendRedirect($this->getLocation(SC_Helper_Mobile_Ex::gfAddSessionId("refusal_complete.php"))); 
     137            $this->sendRedirect($this->getLocation("./refusal_complete.php"), true); 
    138138            exit; 
    139139        } 
  • branches/feature-module-update/data/class/pages/products/LC_Page_Products_Detail.php

    r16235 r16398  
    393393                $objCartSess->setPrevURL($_SERVER['REQUEST_URI']); 
    394394                $objCartSess->addProduct(array($_POST['product_id'], $classcategory_id1, $classcategory_id2), $this->objFormParam->getValue('quantity')); 
    395                 $this->sendRedirect(SC_Helper_Mobile_Ex::gfAddSessionId(MOBILE_URL_CART_TOP)); 
     395                $this->sendRedirect($this->getLocation(MOBILE_URL_CART_TOP), true); 
    396396                exit; 
    397397            } 
Note: See TracChangeset for help on using the changeset viewer.