Changeset 22947


Ignore:
Timestamp:
2013/07/07 16:49:05 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
未使用な引数を削除

File:
1 edited

Legend:

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

    r22926 r22947  
    6666        // カテゴリ情報を取得する。 
    6767        $objFormParam = $this->lfInitParam($_REQUEST); 
    68         $arrCategoryData = $this->lfGetCategories($objFormParam->getValue('category_id'), true, $this); 
     68        $arrCategoryData = $this->lfGetCategories($objFormParam->getValue('category_id'), true); 
    6969        $this->arrCategory = $arrCategoryData['arrCategory']; 
    7070        $this->arrChildren = $arrCategoryData['arrChildren']; 
     
    8888     * @param string $category_id カテゴリID 
    8989     * @param boolean $count_check 有効な商品がないカテゴリを除くかどうか 
    90      * @param object &$objPage ページオブジェクト 
    9190     * @return void 
    9291     */ 
    93     function lfGetCategories($category_id, $count_check = false, &$objPage) 
     92    function lfGetCategories($category_id, $count_check = false) 
    9493    { 
    9594        // カテゴリの正しいIDを取得する。 
Note: See TracChangeset for help on using the changeset viewer.