remove double encoding with auto escape on

This commit is contained in:
Andy Miller
2016-04-07 15:14:50 -06:00
parent dfa119aa1b
commit 631fbd1a14

View File

@@ -47,7 +47,7 @@
<input
{# required attribute structures #}
name="{{ (scope ~ field.name)|fieldName }}"
value="{{ value|e('html_attr')|join(', ') }}"
value="{{ value|join(', ') }}"
{# input attribute structures #}
{% block input_attributes %}
{% if field.classes is defined %}class="{{ field.classes }}" {% endif %}