Actions
Bug #103960
openReferencing an "empty" COA content object does not render anything
Status:
New
Priority:
Should have
Assignee:
-
Category:
TypoScript
Target version:
-
Start date:
2024-05-31
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When a COA is referenced, that does not have any properties in the referenced config,
then adding properties in the place where it referenced, does not render anything
Given the following TypoScript:
page = PAGE
page.10 =< lib.foo
page.10.20 = TEXT
page.10.20.value = bar
lib.foo = COA
I expect to see a rendered "bar"
Actually nothing is rendered.
The following TypoScript is working:
page = PAGE
page.10 =< lib.foo
page.10.20 = TEXT
page.10.20.value = bar
lib.foo = COA
lib.foo.doesNot = matter
Actions