Ignore:
Timestamp:
2010/07/20 13:25:33 (14 years ago)
Author:
kajiwara
Message:

EC-CUBE Ver2.4.4 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=223

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/class/pages/products/LC_Page_Products_List.php

    r18562 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    529529 
    530530        // 取得範囲の指定(開始行番号、行数のセット) 
    531         $objQuery->setlimitoffset($disp_num, $startno); 
     531        $objQuery->setLimitOffset($disp_num, $startno); 
    532532        // 表示順序 
    533         $objQuery->setorder($order); 
     533        $objQuery->setOrder($order); 
    534534 
    535535        // 検索結果の取得 
     
    690690            $table = "vw_product_class AS prdcls"; 
    691691            $where = "product_id = ?"; 
    692             $objQuery->setorder("rank1 DESC, rank2 DESC"); 
     692            $objQuery->setOrder("rank1 DESC, rank2 DESC"); 
    693693            $arrRet = $objQuery->select($col, $table, $where, array($product_id)); 
    694694        } 
     
    725725        $where = "del_flg = 0"; 
    726726        $order = "payment_id"; 
    727         $objQuery->setorder($order); 
     727        $objQuery->setOrder($order); 
    728728        $arrRet = $objQuery->select($col, $from, $where); 
    729729        return $arrRet; 
Note: See TracChangeset for help on using the changeset viewer.