From 5936e052b0454cb31c184d31e53f01865b26c969 Mon Sep 17 00:00:00 2001 From: Fabien Bourigault Date: Fri, 4 Aug 2017 10:39:46 +0200 Subject: [PATCH] fix twig namespaces --- Resources/views/stack.html.twig | 2 +- Resources/views/webprofiler.html.twig | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/views/stack.html.twig b/Resources/views/stack.html.twig index d366439b..92fba7ff 100644 --- a/Resources/views/stack.html.twig +++ b/Resources/views/stack.html.twig @@ -65,7 +65,7 @@ {% for child in collector.childrenStacks(stack) %}
- {% include 'HttplugBundle::stack.html.twig' with { + {% include '@Httplug/stack.html.twig' with { 'collector': collector, 'client': client, 'stack': child, diff --git a/Resources/views/webprofiler.html.twig b/Resources/views/webprofiler.html.twig index 302f345d..7a16f069 100644 --- a/Resources/views/webprofiler.html.twig +++ b/Resources/views/webprofiler.html.twig @@ -41,7 +41,7 @@
{% endset %} - {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url, 'status': collector.failedStacks|length ? 'red' : '' } %} + {% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url, 'status': collector.failedStacks|length ? 'red' : '' } %} {% endif %} {% endblock %} @@ -80,7 +80,7 @@ {% for stack in collector.clientStacks(client) if not stack.parent %}
- {% include 'HttplugBundle::stack.html.twig' with { + {% include '@Httplug/stack.html.twig' with { 'collector': collector, 'client': client, 'stack': stack,