Ignore:
Timestamp:
2011/02/28 20:31:14 (15 years ago)
Author:
shutta
Message:

SC_SiteSessionクラスのclass_extends対応。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php

    r20444 r20448  
    5656    function completeOrder($orderStatus = ORDER_NEW) { 
    5757        $objQuery =& SC_Query::getSingletonInstance(); 
    58         $objSiteSession = new SC_SiteSession(); 
     58        $objSiteSession = new SC_SiteSession_Ex(); 
    5959        $objCartSession = new SC_CartSession_Ex(); 
    6060        $objCustomer = new SC_Customer(); 
     
    118118             *(ユニークIDがPOSTされていない場合はスルー) 
    119119             */ 
    120             if(!SC_SiteSession::checkUniqId()) { 
     120            if(!SC_SiteSession_Ex::checkUniqId()) { 
    121121                SC_Utils_Ex::sfDispSiteError(CANCEL_PURCHASE); 
    122122                exit; 
     
    676676        $objQuery->update("dtb_order_temp", array('del_flg' => 1), 
    677677                          "order_temp_id = ?", 
    678                           array(SC_SiteSession::getUniqId())); 
     678                          array(SC_SiteSession_Ex::getUniqId())); 
    679679 
    680680        $objCartSession->delAllProducts($cartKey); 
    681         SC_SiteSession::unsetUniqId(); 
     681        SC_SiteSession_Ex::unsetUniqId(); 
    682682        return $orderParams['order_id']; 
    683683    } 
Note: See TracChangeset for help on using the changeset viewer.