Project

General

Profile

Bug #80238

Updated by Frans Saris about 7 years ago

<pre> 
 <f:translate key="widget.pagination.next">&raquo;</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;amp;raquo;@ instead of @&amp;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 @&amp;lt;p&amp;gt;hello world&amp;lt;/p&amp;gt;@ @&lt;p&gt;hello world&lt;/p&gt;@

Back