diff --git a/web/typo3conf/ext/ep_products/Classes/Service/StaticSearchParamsRequestService.php b/web/typo3conf/ext/ep_products/Classes/Service/StaticSearchParamsRequestService.php index f0510056..20a4bb7c 100644 --- a/web/typo3conf/ext/ep_products/Classes/Service/StaticSearchParamsRequestService.php +++ b/web/typo3conf/ext/ep_products/Classes/Service/StaticSearchParamsRequestService.php @@ -44,6 +44,10 @@ class StaticSearchParamsRequestService $uri = strtolower(parse_url($currentUri, \PHP_URL_PATH)); + if (strpos($uri, self::PREFIX_PATH_SEGMENT) === false) { + return; + } + $qb = DbUtility::getDbConnection()->createQueryBuilder(); $query = $qb ->select('*')