From 66281c12479dc01a06258d8533eaddfb1770d5bd Mon Sep 17 00:00:00 2001 From: Bernhard Rusch Date: Mon, 17 Jan 2022 15:39:43 +0100 Subject: [PATCH] [Data Object] Classification Store quote filtering --- .../Admin/DataObject/ClassificationstoreController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/AdminBundle/Controller/Admin/DataObject/ClassificationstoreController.php b/bundles/AdminBundle/Controller/Admin/DataObject/ClassificationstoreController.php index 1f536f3a9d7..c1605533730 100644 --- a/bundles/AdminBundle/Controller/Admin/DataObject/ClassificationstoreController.php +++ b/bundles/AdminBundle/Controller/Admin/DataObject/ClassificationstoreController.php @@ -1242,7 +1242,7 @@ public function propertiesGetAction(Request $request) } if ($storeId) { - $conditionParts[] = '(storeId = ' . $storeId . ')'; + $conditionParts[] = '(storeId = '. $db->quote($storeId) . ')'; } if ($request->get('filter')) {