From 96124722887bccffbb6616b1a0bb2d834b94dfed Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 24 Jan 2017 10:58:55 -0800 Subject: [PATCH] [WebProfilerBundle] fixed usage of non-Twig paths in the cache panel --- .../Resources/views/Collector/cache.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/cache.html.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/cache.html.twig index cd096699df799..3f52d643a2bc0 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/cache.html.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/cache.html.twig @@ -1,4 +1,4 @@ -{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %} +{% extends '@WebProfiler/Profiler/layout.html.twig' %} {% block toolbar %} {% if collector.totals.calls > 0 %} @@ -29,7 +29,7 @@ {{ collector.totals.writes }} {% endset %} - {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %} + {% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url } %} {% endif %} {% endblock %}