Browse Source

[FrameworkBundle] mode include tag filenames fixes

Bulat Shakirzyanov 14 years ago
parent
commit
571448b047

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/error.atom.twig

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

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/error.rdf.twig

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

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/exception.atom.twig

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

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/exception.xml.twig

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