Bug #80238
Updated by Frans Saris over 7 years ago
<pre> <f:translate key="widget.pagination.next">»</f:translate> </pre> When the key @widget.pagination.next@ isn't found and the fallback/default value is used this gets double escaped. So output is @&amp;raquo;@ instead of @&raquo;@ Same for html tags: <pre> <f:translate key="widget.pagination.next" htmlEscape="1"><p>hello world</p></f:translate> </pre> Output in TYPO3 7.6 @<p>hello world</p>@ Output in TYPO3 8.6 @&lt;p&gt;hello world&lt;/p&gt;@ @<p>hello world</p>@