Actions
Task #102101
closedDocument potential breaking change with new TypoScript parser
Start date:
2023-10-06
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
This TS used to work as an assignment:
lib.nav.wrap =<ul id="nav">|</ul>
With v12 this is now leading to invalid HTML output.
Most likely "=<" is now identified as a reference operator.
Since this is much more readable:
lib.nav.wrap = <ul id="nav">|</ul>
I suggest to document this edge case as a breaking change.
Actions