Index: branches/version-2_11-dev/data/class/helper/SC_Helper_DB.php
===================================================================
--- branches/version-2_11-dev/data/class/helper/SC_Helper_DB.php	(revision 21317)
+++ branches/version-2_11-dev/data/class/helper/SC_Helper_DB.php	(revision 21319)
@@ -656,5 +656,5 @@
         $sql_where = 'alldtl.del_flg = 0 AND alldtl.status = 1';
         // 在庫無し商品の非表示
-        if (NOSTOCK_HIDDEN === true) {
+        if (NOSTOCK_HIDDEN) {
             $sql_where_dtl = 'stock_max >= 1 OR stock_unlimited_max = 1';
             $from = $objProduct->alldtlSQL($sql_where_dtl);
Index: branches/version-2_11-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php
===================================================================
--- branches/version-2_11-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php	(revision 21256)
+++ branches/version-2_11-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php	(revision 21319)
@@ -169,5 +169,5 @@
         }
         // 在庫無し商品の非表示
-        if (NOSTOCK_HIDDEN === true) {
+        if (NOSTOCK_HIDDEN) {
             $where .= ' AND (stock_max >= 1 OR stock_unlimited_max = 1)';
         }
Index: branches/version-2_11-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php
===================================================================
--- branches/version-2_11-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php	(revision 21225)
+++ branches/version-2_11-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php	(revision 21319)
@@ -583,5 +583,5 @@
 
         // 在庫無し商品の非表示対応
-        if (NOSTOCK_HIDDEN === true) {
+        if (NOSTOCK_HIDDEN) {
             // 件数カウントバッチ実行
             $objDb = new SC_Helper_DB_Ex();
Index: branches/version-2_11-dev/data/class/pages/products/LC_Page_Products_List.php
===================================================================
--- branches/version-2_11-dev/data/class/pages/products/LC_Page_Products_List.php	(revision 21317)
+++ branches/version-2_11-dev/data/class/pages/products/LC_Page_Products_List.php	(revision 21319)
@@ -435,5 +435,5 @@
 
         // 在庫無し商品の非表示
-        if (NOSTOCK_HIDDEN === true) {
+        if (NOSTOCK_HIDDEN) {
             $searchCondition['where'] .= ' AND (stock >= 1 OR stock_unlimited = 1)';
         }
