Actions
Bug #87134
closedPagination Widget inside a partial/section uses the wrong variable provider to render its children
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2018-12-12
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Given this template:
<f:section name="foo">
{abc}
<f:widget.paginate objects="{1:'foo', 2:'bar'}" as="obj">
{abc}
</f:widget.paginate>
{abc}
</f:section>
<f:alias map="{abc: 'outer'}">
<f:render section="foo" arguments="{abc: 'inner'}" />
</f:alias>
Instead of seeing inner
three times, the middle {abc}
inside the pagination widget produces outer
.
Updated by Oliver Hader almost 3 years ago
- Related to Task #92529: Remove fluid widgets added
Updated by Oliver Hader almost 3 years ago
- Status changed from New to Closed
All fluid widgets have been removed in TYPO3 v11.0 - see https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.0/Breaking-92529-AllFluidWidgetFunctionalityRemoved.html
Actions