Skip to content
Snippets Groups Projects
Commit 7af87e43 authored by Claus Due's avatar Claus Due Committed by Georg Ringer
Browse files

[BUGFIX] HTML contained in variables must be unescaped in ButtonBar partial

As the topic says: `f:format.raw` must be implemented here.

Change-Id: I94ad04711e77c1e050ee3c3f1086ec5d3f7f1a35
Resolves: #71693
Releases: master
Reviewed-on: https://review.typo3.org/44801


Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent 13ad20d2
Branches
Tags
No related merge requests found
......@@ -4,13 +4,13 @@
<f:then>
<div class="btn-group" role="group" aria-label="">
<f:for each="{buttonGroup}" as="button">
{button}
{button -> f:format.raw()}
</f:for>
</div>
</f:then>
<f:else>
{buttonGroup.0}
{buttonGroup.0 -> f:format.raw()}
</f:else>
</f:if>
</f:for>
</div>
\ No newline at end of file
</div>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment