8000 bug #17527 fixed undefined variable (fabpot) · symfony/symfony@ca96e33 · GitHub
[go: up one dir, main page]

Skip to content

Commit ca96e33

Browse files
committed
bug #17527 fixed undefined variable (fabpot)
This PR was merged into the 2.3 branch. Discussion ---------- fixed undefined variable | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #16653 | License | MIT | Doc PR | n/a Commits ------- 4b21351 fixed undefined variable
2 parents 1d3fc10 + 4b21351 commit ca96e33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar_item.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% if link %}
1+
{% if link|default(true) %}
22
{% set icon %}
33
<a href="{{ path('_profiler', { 'token': token, 'panel': name }) }}">{{ icon }}</a>
44
{% endset %}

0 commit comments

Comments
 (0)
0