Ignore:
Timestamp:
2012/01/17 16:15:39 (12 years ago)
Author:
Seasoft
Message:

2.12系へマイルストーン変更となったチケット分を差し戻し
r21376 #1582,#1526,#1449 作業を簡単にするため、本来対象外のチケット(#1526,#1449)も含めた
r21375 #1581
r21374 #797
r21373 #1583,#1526 作業を簡単にするため、本来対象外のチケット(#1526)も含めた
r21372 #1576
r21371 #1581

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php

    r21376 r21402  
    177177    // お気に入り商品削除 
    178178    function lfDeleteFavoriteProduct($customer_id, $product_id) { 
    179         $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     179        $objQuery       =& SC_Query_Ex::getSingletonInstance(); 
     180        $count      = $objQuery->count("dtb_customer_favorite_products", "customer_id = ? AND product_id = ?", array($customer_id, $product_id)); 
    180181 
    181         $exists = $objQuery->exists("dtb_customer_favorite_products", "customer_id = ? AND product_id = ?", array($customer_id, $product_id)); 
    182  
    183         if ($exists) { 
     182        if ($count > 0) { 
     183            $objQuery->begin(); 
    184184            $objQuery->delete('dtb_customer_favorite_products', "customer_id = ? AND product_id = ?", array($customer_id, $product_id)); 
     185            $objQuery->commit(); 
    185186        } 
    186187    } 
Note: See TracChangeset for help on using the changeset viewer.