diff --git a/Classes/Domain/Repository/AbstractRepository.php b/Classes/Domain/Repository/AbstractRepository.php index 90b2b37d..0007ebde 100644 --- a/Classes/Domain/Repository/AbstractRepository.php +++ b/Classes/Domain/Repository/AbstractRepository.php @@ -46,6 +46,9 @@ public function persistAll(): void */ protected function convertIdentifiersToObjects(array $identifiers, string $tableName): array { + if ($identifiers === []) { + return []; + } $identifierList = implode(',', $identifiers); $sql = 'select * from ' . $tableName . ' where uid in (' . $identifierList . ')' . 'ORDER BY FIELD(uid, ' . $identifierList . ')'; diff --git a/Documentation/Technical/Changelog/Index.md b/Documentation/Technical/Changelog/Index.md index f1f8d3be..f2f2d63b 100644 --- a/Documentation/Technical/Changelog/Index.md +++ b/Documentation/Technical/Changelog/Index.md @@ -31,6 +31,7 @@ Double check if you have cleared all caches after installing a new LUX version t | Version | Date | State | TYPO3 | Description | |------------|------------|----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 35.0.1 | 2024-04-11 | Bugfix | `11.5 + 12.4` | Prevent possible exception when opening A/B Testing module on an empty installation, update disallowed mail provider list | | 35.0.0 !!! | 2024-03-26 | Feature | `11.5 + 12.4` | Support multiclient usage now, small performance improvements, update social media resources, unify filters in backend modules | | 34.3.3 | 2024-03-04 | Bugfix | `11.5 + 12.4` | Harden curl requests against ip services to prevent exceptions | | 34.3.2 | 2024-02-20 | Task | `11.5 + 12.4` | Update disallowed mail provider list, small code improvement | diff --git a/Resources/Private/Static/DisallowedMailProviders.txt b/Resources/Private/Static/DisallowedMailProviders.txt index bb7aea2f..01f40b4f 100644 --- a/Resources/Private/Static/DisallowedMailProviders.txt +++ b/Resources/Private/Static/DisallowedMailProviders.txt @@ -327,6 +327,7 @@ enterto.com eoopy.com ephemail.net ero-tube.org +eryod.com etranquil.com etranquil.net etranquil.org diff --git a/ext_emconf.php b/ext_emconf.php index e33d1719..1f6a2dac 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'description' => 'Living User Experience - LUX - the Marketing Automation tool for TYPO3. Turn your visitors to leads. Identification and profiling of your visitors within your TYPO3 website.', 'category' => 'plugin', - 'version' => '35.0.0', + 'version' => '35.0.1', 'author' => 'Alex Kellner', 'author_email' => 'alexander.kellner@in2code.de', 'author_company' => 'in2code.de',