Changeset 21296
- Timestamp:
- 2011/10/22 23:44:09 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_11-dev/data/class/SC_CartSession.php
r21252 r21296 340 340 341 341 // 商品情報は常に取得 342 $this->cartSession[$productTypeId][$i]['productsClass'] =& 343 $objProduct->getDetailAndProductsClass( 344 $this->cartSession[$productTypeId][$i]['id']); 345 346 $this->adjustSessionProductsClass($this->cartSession[$productTypeId][$i]['productsClass']); 342 $this->cartSession[$productTypeId][$i]['productsClass'] 343 =& $objProduct->getDetailAndProductsClass($this->cartSession[$productTypeId][$i]['id']); 347 344 348 345 $price = $this->cartSession[$productTypeId][$i]['productsClass']['price02']; … … 358 355 $this->cartSession[$productTypeId][$i]['total_inctax'] = $total; 359 356 360 $arrRet[] =& $this->cartSession[$productTypeId][$i]; 357 $arrRet[] = $this->cartSession[$productTypeId][$i]; 358 359 // セッション変数のデータ量を抑制するため、一部の商品情報を切り捨てる 360 // XXX 上で「常に取得」するのだから、丸ごと切り捨てて良さそうにも感じる。 361 $this->adjustSessionProductsClass($this->cartSession[$productTypeId][$i]['productsClass']); 361 362 } 362 363 }
Note: See TracChangeset
for help on using the changeset viewer.