From a0b9ca1ec0a3860aa0dfc318f3ca8e6d14b9593b Mon Sep 17 00:00:00 2001 From: Michael Stucki <michael.stucki@typo3.org> Date: Thu, 9 May 2019 00:36:08 +0200 Subject: [PATCH] [BUGFIX] Fix language synchronization for inline relations with inline relations If the language synchronization process is called on an inline relation within another inline relation when there is more than one language which should be synchronized, the process fails with the following exception: #1486233164: Child record was not processed The problem happens because of a non-unique cache identifier which leads to incomplete operation. Resolves: #81314 Resolves: #85168 Resolves: #85914 Releases: master, 9.5, 8.7 Change-Id: Icbfc96e5dae387b620e917db168e9e14de5f3820 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60722 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: Benni Mack <benni@typo3.org> Reviewed-by: Daniel Goerz <daniel.goerz@posteo.de> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Reviewed-by: Benni Mack <benni@typo3.org> --- typo3/sysext/core/Classes/DataHandling/DataHandler.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php index a9028ee114d5..2e1429a9232b 100644 --- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php +++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php @@ -3660,7 +3660,7 @@ class DataHandler implements LoggerAwareInterface $recordLocalization = BackendUtility::getRecordLocalization($item['table'], $item['id'], $language); if ($recordLocalization) { $dbAnalysis->itemArray[$index]['id'] = $recordLocalization[0]['uid']; - } elseif ($this->isNestedElementCallRegistered($item['table'], $item['id'], 'localize') === false) { + } elseif ($this->isNestedElementCallRegistered($item['table'], $item['id'], 'localize-' . (string)$language) === false) { $dbAnalysis->itemArray[$index]['id'] = $this->localize($item['table'], $item['id'], $language); } } @@ -4297,11 +4297,11 @@ class DataHandler implements LoggerAwareInterface { $newId = false; $uid = (int)$uid; - if (!$GLOBALS['TCA'][$table] || !$uid || $this->isNestedElementCallRegistered($table, $uid, 'localize') !== false) { + if (!$GLOBALS['TCA'][$table] || !$uid || $this->isNestedElementCallRegistered($table, $uid, 'localize-' . (string)$language) !== false) { return false; } - $this->registerNestedElementCall($table, $uid, 'localize'); + $this->registerNestedElementCall($table, $uid, 'localize-' . (string)$language); if (!$GLOBALS['TCA'][$table]['ctrl']['languageField'] || !$GLOBALS['TCA'][$table]['ctrl']['transOrigPointerField']) { $this->newlog('Localization failed; "languageField" and "transOrigPointerField" must be defined for the table ' . $table, SystemLogErrorClassification::USER_ERROR); return false; -- GitLab