diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php index 583f6b088fb9bc561005ff83c5d486fdeba9d67a..37df075d5f06c0230d3d85a8e21b9af906412172 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php @@ -385,7 +385,7 @@ class Typo3DbBackend implements BackendInterface, SingletonInterface // in the future try { $connection = $this->connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME); - $statement = $connection->executeQuery($realStatement); + $statement = $connection->executeQuery($realStatement, $parameters); } catch (DBALException $e) { throw new SqlErrorException($e->getPrevious()->getMessage(), 1472064775); }