Changeset 20553
- Timestamp:
- 2011/03/08 18:42:22 (12 years ago)
- Location:
- branches/version-2_5-dev/data/class
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/SC_CartSession.php
r20541 r20553 51 51 } 52 52 } 53 $this->registerKey($productTypeId);54 53 } 55 54 -
branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php
r20539 r20553 112 112 foreach ($cartKeys as $cartKey) { 113 113 // 初回のみカートの内容を保存 114 $objCartSession->saveCurrentCart($uniq id, $cartKey);114 $objCartSession->saveCurrentCart($uniqId, $cartKey); 115 115 116 116 /* -
branches/version-2_5-dev/data/class/pages/cart/LC_Page_Cart.php
r20541 r20553 101 101 if(count($cartList) > 0) { 102 102 // カートを購入モードに設定 103 $this->lfSetCurrentCart($objSiteSess, $objCartSess);103 $this->lfSetCurrentCart($objSiteSess, $objCartSess, $cartKey); 104 104 // 購入ページへ 105 105 SC_Response_Ex::sendRedirect(SHOPPING_URL); … … 223 223 * @return void 224 224 */ 225 function lfSetCurrentCart(&$objSiteSess, &$objCartSess){225 function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey){ 226 226 // 正常に登録されたことを記録しておく 227 227 $objSiteSess->setRegistFlag(); … … 235 235 } 236 236 // カートを購入モードに設定 237 $objCartSess->registerKey($cartKey); 237 238 $objCartSess->saveCurrentCart($uniqid, $cartKey); 238 239 }
Note: See TracChangeset
for help on using the changeset viewer.