Changeset 11907


Ignore:
Timestamp:
2007/03/16 17:07:51 (17 years ago)
Author:
uehara
Message:
 
Location:
branches/dev
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/class/SC_CartSession.php

    r271 r11907  
    313313     
    314314    // ¥«¡¼¥È¤ÎÃæ¤ÎÇä¤êÀÚ¤ì¥Á¥§¥Ã¥¯ 
    315     function chkSoldOut($arrCartList){ 
     315    function chkSoldOut($arrCartList, $is_mobile = false){ 
    316316        foreach($arrCartList as $key => $val){ 
    317317            if($val['quantity'] == 0){ 
    318318                // Çä¤êÀڤ쾦Éʤò¥«¡¼¥È¤«¤éºï½ü¤¹¤ë 
    319319                $this->delProduct($val['cart_no']); 
    320                 sfDispSiteError(SOLD_OUT, "", true); 
     320                sfDispSiteError(SOLD_OUT, "", true, "", $is_mobile); 
    321321            } 
    322322        } 
  • branches/dev/html/mobile/shopping/payment.php

    r11902 r11907  
    5858 
    5959// ¥«¡¼ÅÔÆâ¤Î¾¦ÉʤÎÇä¤êÀÚ¤ì¥Á¥§¥Ã¥¯ 
    60 $objCartSess->chkSoldOut($objCartSess->getCartList()); 
     60$objCartSess->chkSoldOut($objCartSess->getCartList(), true); 
    6161 
    6262// Ìá¤ë¥Ü¥¿¥ó¤Î½èÍý 
Note: See TracChangeset for help on using the changeset viewer.