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
Updated by Christian Kuhn 6 months ago
Did this behavior change between v11 and v12?
Updated by Helmut Hummel 6 months ago
Christian Kuhn wrote in #note-1:
Did this behavior change between v11 and v12?
Yes. In 11 "bar" is rendered as expected
Updated by Christian Kuhn 6 months ago
- Related to Feature #97816: New TypoScript parser added
Actions