[FrameworkBundle] mode include tag filenames fixes

This commit is contained in:
Bulat Shakirzyanov 2011-01-24 13:23:32 -05:00 committed by Fabien Potencier
parent 9607e61d86
commit 571448b047
4 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
{% include 'FrameworkBundle:Exception:error.twig.xml' with { 'exception': exception } %}
{% include 'FrameworkBundle:Exception:error.xml.twig' with { 'exception': exception } %}

View File

@ -1 +1 @@
{% include 'FrameworkBundle:Exception:error.twig.xml' with { 'exception': exception } %}
{% include 'FrameworkBundle:Exception:error.xml.twig' with { 'exception': exception } %}

View File

@ -1 +1 @@
{% include 'FrameworkBundle:Exception:exception.twig.xml' with { 'exception': exception } %}
{% include 'FrameworkBundle:Exception:exception.xml.twig' with { 'exception': exception } %}

View File

@ -3,7 +3,7 @@
<error code="{{ status_code }}" message="{{ status_text }}">
{% for e in exception.toarray %}
<exception class="{{ e.class }}" message="{{ e.message }}">
{% include 'FrameworkBundle:Exception:traces.twig.xml' with { 'exception': e } only %}
{% include 'FrameworkBundle:Exception:traces.xml.twig' with { 'exception': e } only %}
</exception>
{% endfor %}
</error>