Ignore:
Timestamp:
2011/01/06 01:28:55 (13 years ago)
Author:
Seasoft
Message:

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r19805 r19833  
    100100            if ($this->cartdown == 2) { 
    101101                // ダウンロード商品のみの場合はカート画面へ戻る 
    102                 $this->tpl_back_url = URL_CART_TOP; 
     102                $this->tpl_back_url = CART_URL_PATH; 
    103103            } else { 
    104                 $this->tpl_back_url = URL_DELIV_TOP; 
     104                $this->tpl_back_url = DELIV_URL_PATH; 
    105105            } 
    106106        } else { 
    107             $this->tpl_back_url = URL_SHOP_TOP . "?from=nonmember"; 
     107            $this->tpl_back_url = SHOPPING_URL . "?from=nonmember"; 
    108108        } 
    109109 
     
    112112        //不正遷移チェック(正常に受注情報が格納されていない場合は一旦カート画面まで戻す) 
    113113        if (!$arrOrderTemp) { 
    114             $this->objDisplay->redirect($this->getLocation(URL_CART_TOP)); 
     114            $this->objDisplay->redirect($this->getLocation(CART_URL_PATH)); 
    115115            exit; 
    116116        } 
     
    148148                $objSiteSess->setRegistFlag(); 
    149149                // 確認ページへ移動 
    150                 $this->objDisplay->redirect($this->getLocation(URL_SHOP_CONFIRM, array(), true)); 
     150                $this->objDisplay->redirect($this->getLocation(SHOPPING_CONFIRM_URL_PATH, array(), true)); 
    151151                exit; 
    152152            }else{ 
     
    162162            // 正常な推移であることを記録しておく 
    163163            $objSiteSess->setRegistFlag(); 
    164             $this->objDisplay->redirect(URL_SHOP_TOP); 
     164            $this->objDisplay->redirect(SHOPPING_URL); 
    165165            exit; 
    166166            break; 
     
    240240        //不正遷移チェック(正常に受注情報が格納されていない場合は一旦カート画面まで戻す) 
    241241        if (!$arrOrderTemp) { 
    242             $this->objDisplay->redirect($this->getLocation(MOBILE_URL_CART_TOP)); 
     242            $this->objDisplay->redirect($this->getLocation(MOBILE_CART_URL_PATH)); 
    243243            exit; 
    244244        } 
     
    265265                if ($this->cartdown == 2) { 
    266266                    // ダウンロード商品のみの場合はカート画面へ戻る 
    267                     $this->objDisplay->redirect($this->getLocation(MOBILE_URL_CART_TOP)); 
     267                    $this->objDisplay->redirect($this->getLocation(MOBILE_CART_URL_PATH)); 
    268268                } else { 
    269                     $this->objDisplay->redirect(MOBILE_URL_SHOP_TOP); 
     269                    $this->objDisplay->redirect(MOBILE_SHOPPING_URL); 
    270270                } 
    271271                exit; 
     
    307307                $objSiteSess->setRegistFlag(); 
    308308                // 確認ページへ移動 
    309                 $this->objDisplay->redirect($this->getLocation(MOBILE_URL_SHOP_CONFIRM)); 
     309                $this->objDisplay->redirect($this->getLocation(MOBILE_SHOPPING_CONFIRM_URL_PATH)); 
    310310                exit; 
    311311            }else{ 
     
    326326            // 正常な推移であることを記録しておく 
    327327            $objSiteSess->setRegistFlag(); 
    328             $this->objDisplay->redirect(MOBILE_URL_SHOP_TOP); 
     328            $this->objDisplay->redirect(MOBILE_SHOPPING_URL); 
    329329            exit; 
    330330            break; 
Note: See TracChangeset for help on using the changeset viewer.