N°3706 Unescape fieldset labels

This commit is contained in:
Stephen Abello
2021-03-04 14:45:37 +01:00
parent 72f6305320
commit 88e502ad7a

View File

@@ -1,6 +1,6 @@
{% if oUIBlock.GetSubBlocks() %}
<fieldset class="ibo-fieldset{% if oUIBlock.IsHidden() %} ibo-is-hidden{% endif %} {{ oUIBlock.GetAdditionalCSSClassesAsString() }}" id="{{ oUIBlock.GetId() }}">
<legend class="ibo-fieldset-legend">{{ oUIBlock.GetLegend() }}</legend>
<legend class="ibo-fieldset-legend">{{ oUIBlock.GetLegend()| raw }}</legend>
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
{{ render_block(oSubBlock, {aPage: aPage}) }}
{% endfor %}