Changeset 21663
- Timestamp:
- 2012/03/20 01:42:36 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/cart/LC_Page_Cart.php
r21596 r21663 160 160 $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 161 161 $totalIncTax = 0; 162 foreach (array_keys($this->cartKeys) as $index) { 163 $key = $this->cartKeys[$index]; 162 foreach ($this->cartKeys as $key) { 164 163 // カート集計処理 165 164 $this->tpl_message = $objCartSess->checkProducts($key); … … 177 176 // 送料無料までの金額を計算 178 177 $this->tpl_deliv_free[$key] = $this->arrInfo['free_rule'] - $this->tpl_total_inctax[$key]; 179 if (SC_Utils_Ex::isBlank($key)) {180 unset($this->cartKeys[$index]);181 }182 178 } 183 179
Note: See TracChangeset
for help on using the changeset viewer.