Ignore:
Timestamp:
2011/12/26 17:11:08 (12 years ago)
Author:
Seasoft
Message:

#1582 (SC_Query 一致レコードの有無を返す機能を追加 (パフォーマンス改善))
#1526 (typo修正・ソース整形・ソースコメントの改善)
#1449 (不要な関数・処理の整理)

File:
1 edited

Legend:

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

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