Ignore:
Timestamp:
2014/08/30 14:23:45 (10 years ago)
Author:
undertree
Message:

#2475 SC_CartSession.phpについて カート商品削除操作getMaxを使用するように修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/SC_CartSession.php

    r23605 r23613  
    300300    public function delProductKey($keyname, $val, $productTypeId) 
    301301    { 
    302         $max = count($this->cartSession[$productTypeId]); 
     302        $max = $this->getMax($productTypeId); 
    303303        for ($i = 0; $i < $max; $i++) { 
    304304            if ($this->cartSession[$productTypeId][$i][$keyname] == $val) { 
Note: See TracChangeset for help on using the changeset viewer.