Changeset 5260 for temp/trunk
- Timestamp:
- 2006/09/20 14:47:06 (20 years ago)
- Location:
- temp/trunk
- Files:
-
- 4 edited
-
data/conf/conf.php (modified) (1 diff)
-
data/lib/slib.php (modified) (1 diff)
-
html/products/detail.php (modified) (1 diff)
-
html/products/list.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/conf/conf.php
r5259 r5260 851 851 AS T3 LEFT JOIN dtb_classcategory AS T4 852 852 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) ', 854 854 855 855 "vw_category_count" => ' -
temp/trunk/data/lib/slib.php
r5259 r5260 1123 1123 $objQuery = new SC_Query(); 1124 1124 $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"; 1126 1126 $where = "product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?"; 1127 1127 $objQuery->setorder("rank1 DESC, rank2 DESC"); -
temp/trunk/html/products/detail.php
r5259 r5260 326 326 $objQuery = new SC_Query(); 327 327 $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"; 329 329 $where = "product_id = ?"; 330 330 $objQuery->setorder("rank1 DESC, rank2 DESC"); -
temp/trunk/html/products/list.php
r5259 r5260 352 352 $objQuery = new SC_Query(); 353 353 $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 "; 355 355 $where = "product_id = ?"; 356 356 $objQuery->setorder("rank1 DESC, rank2 DESC");
Note: See TracChangeset
for help on using the changeset viewer.
