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/products/LC_Page_Products_Detail.php

    r21376 r21402  
    541541        } else { 
    542542            $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    543             $exists = $objQuery->exists("dtb_customer_favorite_products", "customer_id = ? AND product_id = ?", array($customer_id, $favorite_product_id)); 
    544  
    545             if (!$exists) { 
     543            $count = $objQuery->count("dtb_customer_favorite_products", "customer_id = ? AND product_id = ?", array($customer_id, $favorite_product_id)); 
     544 
     545            if ($count == 0) { 
    546546                $sqlval['customer_id'] = $customer_id; 
    547547                $sqlval['product_id'] = $favorite_product_id; 
Note: See TracChangeset for help on using the changeset viewer.