Index: branches/version-2_4/data/class/pages/admin/products/LC_Page_Admin_Products.php
===================================================================
--- branches/version-2_4/data/class/pages/admin/products/LC_Page_Admin_Products.php	(revision 17777)
+++ branches/version-2_4/data/class/pages/admin/products/LC_Page_Admin_Products.php	(revision 17815)
@@ -268,8 +268,16 @@
                     break;
                 case 'delete_all':
+                    // 検索結果の取得
+                    $col = "product_id";
+                    $from = "vw_products_nonclass AS noncls ";
+                    $arrProducts = $objQuery->select($col, $from, $where, $arrval);
                     // 検索結果をすべて削除
-                    $where = "product_id IN (SELECT product_id FROM vw_products_nonclass AS noncls  WHERE $where)";
                     $sqlval['del_flg'] = 1;
-                    $objQuery->update("dtb_products", $sqlval, $where, $arrval);
+                    $where = "product_id = ?";
+                    if (count($arrProducts) > 0) {
+                        foreach ($arrProducts as $key => $val) {
+                            $objQuery->update("dtb_products", $sqlval, $where, array($arrProducts[$key]["product_id"]));
+                        }
+                    }
                     break;
                 default:
