From 68e126345a98719d03781de93339ef024fb4ab8e Mon Sep 17 00:00:00 2001 From: Stefan Hagspiel Date: Thu, 26 Mar 2026 18:46:23 +0100 Subject: [PATCH 1/2] remove redundant translation cache clearing from TranslationController --- src/Controller/Admin/TranslationController.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Controller/Admin/TranslationController.php b/src/Controller/Admin/TranslationController.php index 8e5f802..69e87ff 100644 --- a/src/Controller/Admin/TranslationController.php +++ b/src/Controller/Admin/TranslationController.php @@ -153,9 +153,6 @@ public function exportAction(Request $request): Response $translation->setDomain($domain); $tableName = $translation->getDao()->getDatabaseTableName(); - // clear translation cache - Translation::clearDependentCache(); - $list = new Translation\Listing(); $list->setDomain($domain); @@ -323,9 +320,6 @@ public function translationsAction(Request $request, TranslatorInterface $transl $translation->setDomain($domain); $tableName = $translation->getDao()->getDatabaseTableName(); - // clear translation cache - Translation::clearDependentCache(); - if ($request->request->has('data')) { $data = $this->decodeJson($request->request->get('data')); From e6ee93866aacacfaeffa2d69a49cfae7651d933a Mon Sep 17 00:00:00 2001 From: Stefan Hagspiel Date: Thu, 26 Mar 2026 18:56:25 +0100 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bd0074..2c7ecee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog / Upgrade Notes +## 1.3.2 +* Bugfix: Remove redundant translation cache clearing from TranslationController + ## 1.3.1 * Bugfix: Add guard clause to prevent rendering site settings without a valid site