Actions
Bug #67934
closedLink view helper needs to escape square brackets in URLs
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2015-07-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
When I generate links with the f:link.action viewhelper, the generated href attribute reads like this:
href="home/?tx_myext_myplugin[id]=1&tx_myext_myplugin[action]=show&cHash=8d3d1a11600f17ba6cbdf68e292f206b"
The code in my fluid template:<f:link.action action="show" arguments="{id: id}" title="Show">Show</f:link.action>
The square brackets are not replaced by %5B and %5D and so the w3c validator marks the href as invalid.
Same applies to the action url of the f:form viewhelper.
Actions