Changeset 16362


Ignore:
Timestamp:
2007/10/10 12:02:48 (16 years ago)
Author:
nanasess
Message:

リファクタリング, コメント追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/cart/LC_Page_Cart.php

    r16170 r16362  
    6868        if (!isset($_POST['mode'])) $_POST['mode'] = ""; 
    6969 
     70        /* 
     71         * FIXME reload() を使った方が良いが無限ループしてしまう... 
     72         */ 
    7073        switch($_POST['mode']) { 
    7174        case 'up': 
     
    162165        if (!isset($_REQUEST['continue'])) $_REQUEST['continue'] = ""; 
    163166        if($_REQUEST['continue']) { 
    164             $this->sendRedirect($this->getLocation(MOBILE_URL_SITE_TOP, array(session_name() => session_id()))); 
     167            $this->sendRedirect($this->getLocation(MOBILE_URL_SITE_TOP), true); 
    165168            exit; 
    166169        } 
     
    215218                $objCartSess->saveCurrentCart($uniqid); 
    216219                // 購入ページへ 
    217                 $this->sendRedirect(SC_Helper_Mobile_Ex::gfAddSessionId(MOBILE_URL_SHOP_TOP)); 
     220                $this->sendRedirect(MOBILE_URL_SHOP_TOP, true); 
    218221 
    219222                exit; 
Note: See TracChangeset for help on using the changeset viewer.