Created
July 5, 2012 08:14
-
-
Save digitalkaoz/3052236 to your computer and use it in GitHub Desktop.
form rendering bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- no extends --> | |
{% use 'form_div_layout.html.twig' with widget_attributes as base_widget_attributes %} | |
{% block widget_attributes %} | |
{% set full_name = name %} | |
{{ block('base_widget_attributes') }} | |
{% endblock widget_attributes %} | |
{% form_theme form _self %} | |
<!-- faulty block prints this --> | |
id="" name="" | |
<!-- end block prints --> | |
<!-- correct form rendering here --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
solved with:
will submit a patch