Bug #81315 ยป fix.patch
typo3/sysext/core/Classes/DataHandling/Localization/DataMapProcessor.php | ||
---|---|---|
// @todo Invalid manually injected child relations cannot be determined here
|
||
$sanitizedValue = $this->sanitizationMap[$item->getTableName()][$item->getId()][$fieldName] ?? null;
|
||
if (
|
||
!empty($missingAncestorIds) && $item->isNew() && $sanitizedValue !== null
|
||
!empty($missingAncestorIds) && $item->isNew() && !empty($sanitizedValue)
|
||
&& count(GeneralUtility::trimExplode(',', $sanitizedValue)) === count($missingAncestorIds)
|
||
) {
|
||
$this->modifyDataMap(
|