Changeset 23117


Ignore:
Timestamp:
2013/08/23 18:31:57 (11 years ago)
Author:
pineray
Message:

#2162 オススメ商品表示の条件式に誤りがあったのを訂正

File:
1 edited

Legend:

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

    r22926 r23117  
    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.