Actions
Bug #105461
closedImprove example for rendering content with f:cObject for page-content processor
Status:
Resolved
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2024-10-25
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
13
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Current example in the Changelogs use {record.fullType}
in the typoScriptObjectPath
:
<f:cObject typoscriptObjectPath="{record.fullType}" table="{record.mainType}" data="{record.rawRecord}"/>
With this code rendering of the whole page is breaking by an exception that the TypoScript object can't be found if no TypoScript for the CType exists.
Better using {record.mainType} (normally tt_content)
<f:cObject typoscriptObjectPath="{record.mainType}" table="{record.mainType}" data="{record.rawRecord}"/>
Actions