Changeset 22777
- Timestamp:
- 2013/04/04 18:44:04 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/helper/SC_Helper_Category.php
r22603 r22777 52 52 { 53 53 $objQuery =& SC_Query_Ex::getSingletonInstance(); 54 $col = ' *';54 $col = 'dtb_category.*, dtb_category_total_count.product_count'; 55 55 $from = 'dtb_category left join dtb_category_total_count ON dtb_category.category_id = dtb_category_total_count.category_id'; 56 56 $where = 'dtb_category.category_id = ? AND del_flg = 0'; … … 75 75 if (!isset($arrCategory[$this->count_check])) { 76 76 $objQuery =& SC_Query_Ex::getSingletonInstance(); 77 $col = ' *';77 $col = 'dtb_category.*, dtb_category_total_count.product_count'; 78 78 $from = 'dtb_category left join dtb_category_total_count ON dtb_category.category_id = dtb_category_total_count.category_id'; 79 79 // 登録商品数のチェック
Note: See TracChangeset
for help on using the changeset viewer.