浏览代码

Merge pull request #1497 from DelphineGx/patch-1

Missing brackets form_widget(child)
Thomas 12 年之前
父节点
当前提交
b122195497
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Resources/views/Form/form_admin_fields.html.twig

+ 1 - 1
Resources/views/Form/form_admin_fields.html.twig

@@ -79,7 +79,7 @@ file that was distributed with this source code.
         {% for child in form %}
             <li>
                 {% set form_widget_content %}
-                    form_widget(child)
+                    {{ form_widget(child) }}
                 {% endset %}
                 {{ form_label(child, child.vars.label|default(null), { 'in_list_checkbox' : true, 'widget' : form_widget_content } ) }}
             </li>