Actions
Bug #80238
closedf:translate double escapes default values
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2017-03-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Stabilization Sprint
Description
<f:translate key="widget.pagination.next">»</f:translate>
When the key widget.pagination.next
isn't found and the fallback/default value is used this gets double escaped.
So output is &raquo;
instead of »
Same for html tags:
<f:translate key="widget.pagination.next" htmlEscape="1"><p>hello world</p></f:translate>
Output in TYPO3 7.6 <p>hello world</p>
Output in TYPO3 8.6 <p>hello world</p>
Actions