8000 bug #15514 removed _self usage when not needed (fabpot) · symfony/symfony@b450c84 · GitHub
[go: up one dir, main page]

Skip to content
file changed
+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/form.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@
434434
{% if data.children is not empty %}
435435
<ul id="{{ data.id }}-children"{% if not expanded %} class="hidden"{% endif %}>
436436
{% for childName, childData in data.children %}
437-
{{ _self.form_tree_entry(childName, childData, false) }}
437+
{{ form_tree_entry(childName, childData, false) }}
438438
{% endfor %}
439439
</ul>
440440
{% endif %}
@@ -673,6 +673,6 @@
673673
</div>
674674

675675
{% for childName, childData in data.children %}
676-
{{ _self.form_tree_details(childName, childData, forms_by_hash) }}
676+
{{ form_tree_details(childName, childData, forms_by_hash) }}
677677
{% endfor %}
678678
{% endmacro %}

0 commit comments

Comments
 (0)
0