Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend.php

    r22926 r23126  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    4848     * @return void 
    4949     */ 
    50     function process() 
     50    public function process() 
    5151    { 
    5252        $this->action(); 
     
    5959     * @return void 
    6060     */ 
    61     function action() 
     61    public function action() 
    6262    { 
    6363        // 基本情報を渡す 
     
    7474     * @return array $arrBestProducts 検索結果配列 
    7575     */ 
    76     function lfGetRanking() 
     76    public function lfGetRanking() 
    7777    { 
    7878        $objRecommend = new SC_Helper_BestProducts_Ex(); 
     
    100100                if (isset($arrProducts[$value['product_id']])) { 
    101101                    $product = $arrProducts[$value['product_id']]; 
    102                     if (!NOSTOCK_HIDDEN || ($product['status'] == 1 && ($product['stock_max'] >= 1 || $product['stock_unlimited_max'] == 1))) { 
     102                    if ($product['status'] == 1 && (!NOSTOCK_HIDDEN || ($product['stock_max'] >= 1 || $product['stock_unlimited_max'] == 1))) { 
    103103                        $response[] = array_merge($value, $arrProducts[$value['product_id']]); 
    104104                    } 
Note: See TracChangeset for help on using the changeset viewer.