Changeset 4807 for temp/trunk


Ignore:
Timestamp:
2006/09/15 17:57:55 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/lib/slib.php

    r4806 r4807  
    22812281function sfGetCatTree($parent_category_id, $count_check = false) { 
    22822282    $objQuery = new SC_Query(); 
    2283     $col = "*"; 
     2283    $col = ""; 
     2284    $col .= " cat.category_id,"; 
     2285    $col .= " cat.category_name,"; 
     2286    $col .= " cat.parent_category_id,"; 
     2287    $col .= " cat.level,"; 
     2288    $col .= " cat.rank,"; 
     2289    $col .= " cat.creator_id,"; 
     2290    $col .= " cat.create_date,"; 
     2291    $col .= " cat.update_date,"; 
     2292    $col .= " cat.del_flg"; 
     2293     
    22842294    $from = "dtb_category as cat left join dtb_category_total_count as ttl on ttl.category_id = cat.category_id"; 
    22852295    // ÅÐÏ¿¾¦ÉÊ¿ô¤Î¥Á¥§¥Ã¥¯ 
Note: See TracChangeset for help on using the changeset viewer.