- Timestamp:
- 2011/02/28 20:31:14 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php
r20444 r20448 56 56 function completeOrder($orderStatus = ORDER_NEW) { 57 57 $objQuery =& SC_Query::getSingletonInstance(); 58 $objSiteSession = new SC_SiteSession ();58 $objSiteSession = new SC_SiteSession_Ex(); 59 59 $objCartSession = new SC_CartSession_Ex(); 60 60 $objCustomer = new SC_Customer(); … … 118 118 *(ユニークIDがPOSTされていない場合はスルー) 119 119 */ 120 if(!SC_SiteSession ::checkUniqId()) {120 if(!SC_SiteSession_Ex::checkUniqId()) { 121 121 SC_Utils_Ex::sfDispSiteError(CANCEL_PURCHASE); 122 122 exit; … … 676 676 $objQuery->update("dtb_order_temp", array('del_flg' => 1), 677 677 "order_temp_id = ?", 678 array(SC_SiteSession ::getUniqId()));678 array(SC_SiteSession_Ex::getUniqId())); 679 679 680 680 $objCartSession->delAllProducts($cartKey); 681 SC_SiteSession ::unsetUniqId();681 SC_SiteSession_Ex::unsetUniqId(); 682 682 return $orderParams['order_id']; 683 683 }
Note: See TracChangeset
for help on using the changeset viewer.
