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/admin/products/LC_Page_Admin_Products.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/ 
     
    262262                    default: 
    263263                        // 読み込む列とテーブルの指定 
    264                         $col = "product_id, name, main_list_image, status, product_code_min, product_code_max, price02_min, price02_max, stock_min, stock_max, stock_unlimited_min, stock_unlimited_max, update_date"; 
    265                         $from = "vw_products_allclass_detail AS alldtl "; 
     264                        $col = "product_id, name, category_id, main_list_image, status, product_code, price01, price02, stock, stock_unlimited"; 
     265                        $from = "vw_products_nonclass AS noncls "; 
    266266 
    267267                        // 行数の取得 
     
    292292 
    293293                        // 取得範囲の指定(開始行番号、行数のセット) 
    294                         //                    if(DB_TYPE != "mysql") $objQuery->setlimitoffset($page_max, $startno); 
    295                         $objQuery->setlimitoffset($page_max, $startno); 
     294                        //                    if(DB_TYPE != "mysql") $objQuery->setLimitOffset($page_max, $startno); 
     295                        $objQuery->setLimitOffset($page_max, $startno); 
    296296                        // 表示順序 
    297                         $objQuery->setorder($order); 
     297                        $objQuery->setOrder($order); 
    298298 
    299299                        // 検索結果の取得 
Note: See TracChangeset for help on using the changeset viewer.