Skip to content

Commit

Permalink
fix EC-CUBE#125 存在しない引数に未定義変数を渡していたのを削除
Browse files Browse the repository at this point in the history
別件と同時実装し、9bdf20819b897c07696d1377b37c4cee66bd2188 で本件を分離する際に混入したもの。実質的な動作に変化はない。
  • Loading branch information
seasoftjapan committed Feb 16, 2024
1 parent 3d6b053 commit 6e70fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/class/helper/SC_Helper_DB.php
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ public function sfCountCategory($objQuery = NULL, $is_force_all_count = false, $
}

//共通のfrom/where文の構築
$where_alldtl = SC_Product_Ex::getProductDispConditions('alldtl', $for_reseller);
$where_alldtl = SC_Product_Ex::getProductDispConditions('alldtl');
// 在庫無し商品の非表示
if ($is_nostock_hidden) {
$from_alldtl = $objProduct->alldtlSQL('(stock >= 1 OR stock_unlimited = 1)');
Expand Down

0 comments on commit 6e70fb9

Please sign in to comment.