Skip to content

Commit

Permalink
[WIP] dataprocessor
Browse files Browse the repository at this point in the history
  • Loading branch information
achimfritz committed Dec 23, 2024
1 parent 22538e6 commit 3ea2236
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions Classes/DataProcessing/ContainerProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,7 @@ protected function processColPos(
$languageAspect = $this->context->getAspect('language');
foreach ($children as &$child) {
if (!isset($processorConfiguration['skipRenderingChildContent']) || (int)$processorConfiguration['skipRenderingChildContent'] === 0) {
if ($child['l18n_parent'] > 0 && $languageAspect->doOverlays()) {
$conf['source'] = $child['l18n_parent'];
} else {
$conf['source'] = $child['uid'];
}
if ($child['t3ver_oid'] > 0) {
$conf['source'] = $child['t3ver_oid'];
}
$conf['source'] = $child['uid'];
$child['renderedContent'] = $cObj->render($contentRecordRenderer, $conf);
}
/** @var ContentObjectRenderer $recordContentObjectRenderer */
Expand Down

0 comments on commit 3ea2236

Please sign in to comment.