From 19cc0872c1b96990b4374219a1d10b0a548a818b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Wed, 30 Oct 2024 15:31:34 +0100 Subject: [PATCH] fix: ensure correct argument type --- .../typo3conf/ext/ep_products/Classes/Service/FilterService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_products/Classes/Service/FilterService.php b/public/typo3conf/ext/ep_products/Classes/Service/FilterService.php index a5e4e061..dafaa1eb 100644 --- a/public/typo3conf/ext/ep_products/Classes/Service/FilterService.php +++ b/public/typo3conf/ext/ep_products/Classes/Service/FilterService.php @@ -47,7 +47,7 @@ class FilterService implements SingletonInterface if (empty($value)) { return []; } - return array_map('intval', $value); + return array_map('intval', (array) $value); }); } $optionsResolver->setNormalizer('bus', function (Options $options, $value) {