Actions
Bug #90288
closedTemplate file "PageZero.html" contains Fluid syntax errors
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2020-02-01
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In TYPO3 8.7 (possibly also 9.5) the template file "PageZero.html" belonging to the tstemplate extension, contains the following syntax errors:
- <f:if condition="{f:count({page._templates}))}">
- <f:if condition="{f:count({page._nodes}))}">
Both of these should be replaced with the valid syntax alternatives:
- <f:if condition="{page._templates}">
- <f:if condition="{page._nodes}">
Actions