Skip to content

Commit

Permalink
[WIP] copyToLanguage
Browse files Browse the repository at this point in the history
  • Loading branch information
achimfritz committed Jan 18, 2025
1 parent 9a478f9 commit 252cb33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected function newElementAfterContainer(array $incomingFieldArray): array
if ((int)$record['uid'] === (int)($incomingFieldArray['tx_container_parent'] ?? 0)) {
return $incomingFieldArray;
}
if (($record['t3_origuid'] ?? 0) > 0 && (int)$record['t3_origuid'] === (int)($incomingFieldArray['tx_container_parent'] ?? 0))
if (($record['l10n_source'] ?? 0) > 0 && (int)$record['l10n_source'] === (int)($incomingFieldArray['tx_container_parent'] ?? 0))
{
return $incomingFieldArray;
}
Expand Down

0 comments on commit 252cb33

Please sign in to comment.