TYPO3: Escaping ampersand "&" in fluid templates

revision fe8b2b19555e9e35895439b147e2575c386b6cce

raw

README.rst

This did work with TYPO3 v7:

<v:variable.set name="url">/?eID=tx_ext_action<![CDATA[&]]>param2={record.uid}</v:variable.set>

The CDATA sections are dropped in TYPO3 v8.

Workaround:

<v:variable.set name="url"><f:format.htmlentitiesDecode>/?eID=tx_ext_action&amp;param2={record.uid}</f:format.htmlentitiesDecode></v:variable.set>

History