Ignore:
Timestamp:
2013/05/21 12:01:24 (11 years ago)
Author:
kimoto
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)
商品表示条件が点在しているので1箇所にまとめてプラグインを作りやすいよう
にする

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/rss/LC_Page_Rss_Products.php

    r22567 r22833  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Rss_Products extends LC_Page_Ex  
     34class LC_Page_Rss_Products extends LC_Page_Ex 
    3535{ 
    3636 
     
    296296    { 
    297297        // --- 商品一覧の取得 
    298         $objQuery->setWhere('del_flg = 0 AND status = 1'); 
     298        $objProduct = new SC_Product_Ex(); 
     299        $objQuery->setWhere($objProduct->getProductDispConditions()); 
    299300        $objQuery->setOrder('product_id'); 
    300         $objProduct = new SC_Product_Ex(); 
    301301        $arrProductLsit = $objProduct->lists($objQuery); 
    302302        // 各商品のカテゴリIDとランクの取得 
Note: See TracChangeset for help on using the changeset viewer.