Skip to content

Commit 140e847

Browse files
committed
bug #21395 [WebProfilerBundle] fixed usage of non-Twig paths in the cache panel (fabpot)
This PR was merged into the 3.3-dev branch. Discussion ---------- [WebProfilerBundle] fixed usage of non-Twig paths in the cache panel | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Commits ------- 9612472 [WebProfilerBundle] fixed usage of non-Twig paths in the cache panel
2 parents 84a5483 + 9612472 commit 140e847

File tree

1 file changed

+2
-2
lines changed
  • src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
1+
{% extends '@WebProfiler/Profiler/layout.html.twig' %}
22

33
{% block toolbar %}
44
{% if collector.totals.calls > 0 %}
@@ -29,7 +29,7 @@
2929
<span>{{ collector.totals.writes }}</span>
3030
</div>
3131
{% endset %}
32-
{% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %}
32+
{% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url } %}
3333
{% endif %}
3434
{% endblock %}
3535

0 commit comments

Comments
 (0)