Ignore:
Timestamp:
2010/12/16 23:21:59 (13 years ago)
Author:
Seasoft
Message:

#855(SC_Query の #select, #getRow, #getCol, #get, #min, #max の引数順を統一する)

  • SC_Query#getRow を改訂
File:
1 edited

Legend:

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

    r19711 r19731  
    248248                // 更新の場合は規格組み合わせを検索し, 削除しておく 
    249249                $class_combination_id = $exists[$arrList["product_class_id:".$i]]['class_combination_id']; 
    250                 $existsCombi = $objQuery->getRow("dtb_class_combination", 
    251                                                  "*", "class_combination_id = ?", 
    252                                                  array($class_combination_id)); 
     250                $existsCombi = $objQuery->getRow( 
     251                    "*", 
     252                    "dtb_class_combination", 
     253                    "class_combination_id = ?", 
     254                    array($class_combination_id) 
     255                ); 
    253256 
    254257                $objQuery->delete("dtb_class_combination", 
     
    614617    function getProductsClass($product_id) { 
    615618        $objQuery =& SC_Query::getSingletonInstance(); 
    616         return $objQuery->getRow("dtb_products_class", "*", "product_id = ?", array($product_id)); 
     619        return $objQuery->getRow("*", "dtb_products_class", "product_id = ?", array($product_id)); 
    617620    } 
    618621 
Note: See TracChangeset for help on using the changeset viewer.