Changeset 5260 for temp/trunk


Ignore:
Timestamp:
2006/09/20 14:47:06 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/conf/conf.php

    r5259 r5260  
    851851        AS T3 LEFT JOIN dtb_classcategory AS T4 
    852852        ON T3.classcategory_id2 = T4.classcategory_id) AS T5 LEFT JOIN dtb_products AS T6 
    853         ON product_id_sub = T6.product_id) vw_product_class ', 
     853        ON product_id_sub = T6.product_id) ', 
    854854 
    855855    "vw_category_count" => ' 
  • temp/trunk/data/lib/slib.php

    r5259 r5260  
    11231123    $objQuery = new SC_Query(); 
    11241124    $col = "product_id, deliv_fee, name, product_code, main_list_image, main_image, price01, price02, point_rate, product_class_id, classcategory_id1, classcategory_id2, class_id1, class_id2, stock, stock_unlimited, sale_limit, sale_unlimited"; 
    1125     $table = "vw_product_class"; 
     1125    $table = "vw_product_class AS prdcls"; 
    11261126    $where = "product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?"; 
    11271127    $objQuery->setorder("rank1 DESC, rank2 DESC"); 
  • temp/trunk/html/products/detail.php

    r5259 r5260  
    326326        $objQuery = new SC_Query(); 
    327327        $col = "product_class_id, classcategory_id1, classcategory_id2, class_id1, class_id2, stock, stock_unlimited"; 
    328         $table = "vw_product_class"; 
     328        $table = "vw_product_class AS prdcls"; 
    329329        $where = "product_id = ?"; 
    330330        $objQuery->setorder("rank1 DESC, rank2 DESC"); 
  • temp/trunk/html/products/list.php

    r5259 r5260  
    352352        $objQuery = new SC_Query(); 
    353353        $col = "product_class_id, classcategory_id1, classcategory_id2, class_id1, class_id2, stock, stock_unlimited"; 
    354         $table = "vw_product_class AS prdcls"; 
     354        $table = "vw_product_class "; 
    355355        $where = "product_id = ?"; 
    356356        $objQuery->setorder("rank1 DESC, rank2 DESC"); 
Note: See TracChangeset for help on using the changeset viewer.