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/mypage/LC_Page_Mypage_History.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/ 
     
    147147 
    148148        // 取得範囲の指定(開始行番号、行数のセット) 
    149         $objQuery->setlimitoffset(HISTORY_NUM, $pageNo); 
     149        $objQuery->setLimitOffset(HISTORY_NUM, $pageNo); 
    150150        // 表示順序 
    151         $objQuery->setorder($order); 
     151        $objQuery->setOrder($order); 
    152152 
    153153        //購入履歴の取得 
     
    208208        $col = "product_id, product_code, product_name, classcategory_name1, classcategory_name2, price, quantity, point_rate"; 
    209209        $where = "order_id = ?"; 
    210         $objQuery->setorder("classcategory_id1, classcategory_id2"); 
     210        $objQuery->setOrder("classcategory_id1, classcategory_id2"); 
    211211        $arrRet = $objQuery->select($col, "dtb_order_detail", $where, array($order_id)); 
    212212        return $arrRet; 
Note: See TracChangeset for help on using the changeset viewer.