Ignore:
Timestamp:
2009/11/26 16:56:31 (14 years ago)
Author:
Seasoft
Message:
  • 無意味な変数セットを削除
  • ソース整形
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/products/LC_Page_Products_List.php

    r18288 r18396  
    103103        $count = $objQuery->count("dtb_best_products", "category_id = ?", array($this->arrSearchData['category_id'])); 
    104104 
    105             // 商品一覧の表示処理 
     105        // 商品一覧の表示処理 
    106106        $this->lfDispProductsList(); 
    107107 
    108             // 検索条件を画面に表示 
    109             // カテゴリー検索条件 
     108        // 検索条件を画面に表示 
     109        // カテゴリー検索条件 
    110110        if ($this->arrSearchData['category_id'] == 0) { 
    111111            $this->arrSearch['category'] = "指定なし"; 
     
    113113            $arrCat = $conn->getOne("SELECT category_name FROM dtb_category WHERE category_id = ?", array($this->arrSearchData['category_id'])); 
    114114            $this->arrSearch['category'] = $arrCat; 
    115             } 
    116  
    117             // メーカー検索条件 
     115        } 
     116 
     117        // メーカー検索条件 
    118118        if (strlen($this->arrSearchData['maker_id']) == 0) { 
    119119            $this->arrSearch['maker'] = "指定なし"; 
    120120        } else { 
    121             $this->arrSearch['maker'] = $name = $conn->getOne("SELECT name FROM dtb_maker WHERE maker_id = ?", $this->arrSearchData['maker_id']); 
    122             } 
    123  
    124             // 商品名検索条件 
     121            $this->arrSearch['maker'] = $conn->getOne("SELECT name FROM dtb_maker WHERE maker_id = ?", $this->arrSearchData['maker_id']); 
     122        } 
     123 
     124        // 商品名検索条件 
    125125        if (strlen($this->arrSearchData['name']) == 0) { 
    126126            $this->arrSearch['name'] = "指定なし"; 
    127127        } else { 
    128128            $this->arrSearch['name'] = $this->arrSearchData['name']; 
    129             } 
     129        } 
    130130 
    131131        // レイアウトデザインを取得 
Note: See TracChangeset for help on using the changeset viewer.