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
-------

9612472288 [WebProfilerBundle] fixed usage of non-Twig paths in the cache panel
This commit is contained in:
Fabien Potencier 2017-01-24 11:00:59 -08:00
commit 140e847ae3

View File

@ -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 @@
<span>{{ collector.totals.writes }}</span>
</div>
{% 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 %}