Ignore:
Timestamp:
2011/03/09 14:31:45 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)

  • TAB
File:
1 edited

Legend:

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

    r20541 r20562  
    106106        } 
    107107 
    108         $arrCategory = null;    // 選択されたカテゴリー 
    109         $arrChildren = array(); // 子カテゴリー 
     108        $arrCategory = null;    // 選択されたカテゴリー 
     109        $arrChildren = array(); // 子カテゴリー 
    110110 
    111111        $arrAll = SC_Helper_DB_Ex::sfGetCatTree($category_id, $count_check); 
     
    140140        // 選択されたカテゴリーに直属の商品がある場合は、子カテゴリーの先頭に追加する。 
    141141        if ($arrCategory['product_count'] > $children_product_count) { 
    142             $arrCategory['product_count'] -= $children_product_count;   // 子カテゴリーの商品数を除く。 
    143             $arrCategory['has_children'] = false;   // 商品一覧ページに遷移させるため。 
     142            $arrCategory['product_count'] -= $children_product_count; // 子カテゴリーの商品数を除く。 
     143            $arrCategory['has_children'] = false; // 商品一覧ページに遷移させるため。 
    144144            array_unshift($arrChildren, $arrCategory); 
    145145        } 
Note: See TracChangeset for help on using the changeset viewer.