Changeset 18460


Ignore:
Timestamp:
2010/01/01 23:46:26 (14 years ago)
Author:
Seasoft
Message:

【取得元のログメッセージ】

  • #525 お届け先を指定せずに注文完了できる 不具合を修正
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/shopping/LC_Page_Shopping_Payment.php

    r18386 r18460  
    9696        } 
    9797 
     98        // 一時受注テーブルの読込 
     99        $arrOrderTemp = $objDb->sfGetOrderTemp($uniqid); 
     100        //不正遷移チェック(正常に受注情報が格納されていない場合は一旦カート画面まで戻す) 
     101        if (!$arrOrderTemp) { 
     102            $this->sendRedirect($this->getLocation(URL_CART_TOP)); 
     103            exit; 
     104        } 
     105 
    98106        // カート内商品の集計処理を行う 
    99107        $objDb->sfTotalCart($this, $objCartSess); 
     
    199207            $this->tpl_login = '1'; 
    200208            $this->tpl_user_point = $this->objCustomer->getValue('point'); 
     209        } 
     210 
     211        // 一時受注テーブルの読込 
     212        $arrOrderTemp = $objDb->sfGetOrderTemp($uniqid); 
     213        //不正遷移チェック(正常に受注情報が格納されていない場合は一旦カート画面まで戻す) 
     214        if (!$arrOrderTemp) { 
     215            $this->sendRedirect($this->getLocation(MOBILE_URL_CART_TOP)); 
     216            exit; 
    201217        } 
    202218 
Note: See TracChangeset for help on using the changeset viewer.