Ignore:
Timestamp:
2011/03/04 23:24:33 (13 years ago)
Author:
shutta
Message:

SC_Queryクラスのclass_extends対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_RecommendSearch.php

    r20503 r20507  
    188188        $bind = $whereAndBind['bind']; 
    189189        // 検索結果対象となる商品の数を取得 
    190         $objQuery =& SC_Query::getSingletonInstance(); 
     190        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    191191        $objQuery->setWhere($where); 
    192192        $linemax = $objProduct->findProductCount($objQuery, $bind); 
     
    202202        $where = $whereAndBind['where']; 
    203203        $bind = $whereAndBind['bind']; 
    204         $objQuery =& SC_Query::getSingletonInstance(); 
     204        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    205205        $objQuery->setWhere($where); 
    206206        // 取得範囲の指定(開始行番号、行数のセット) 
     
    225225            $where = '0<>0'; 
    226226        } 
    227         $objQuery =& SC_Query::getSingletonInstance(); 
     227        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    228228        $objQuery->setWhere($where); 
    229229        // 表示順序 
Note: See TracChangeset for help on using the changeset viewer.