Parcourir la source

[FrameworkBundle] fixed template names

Bulat Shakirzyanov il y a 14 ans
Parent
commit
5ff0dedebb

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

@@ -1,3 +1,3 @@
 /*
-{% include 'FrameworkBundle:Exception:exception.twig.txt' with { 'exception': exception } %}
+{% include 'FrameworkBundle:Exception:exception.txt.twig' with { 'exception': exception } %}
 */

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

@@ -1,3 +1,3 @@
 /*
-{% include 'FrameworkBundle:Exception:exception.twig.txt' with { 'exception': exception } %}
+{% include 'FrameworkBundle:Exception:exception.txt.twig' with { 'exception': exception } %}
 */

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/exception.rdf.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.txt.twig

@@ -2,6 +2,6 @@
 [message] {{ exception.message }}
 {% for i, e in exception.toarray %}
 [{{ i + 1 }}] {{ e.class }}: {{ e.message }}
-{% include 'FrameworkBundle:Exception:traces.twig.txt' with { 'exception': e } only %}
+{% include 'FrameworkBundle:Exception:traces.txt.twig' with { 'exception': e } only %}
 
 {% endfor %}

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/traces.txt.twig

@@ -1,6 +1,6 @@
 {% if exception.trace|length %}
 {% for trace in exception.trace %}
-{% include 'FrameworkBundle:Exception:trace.twig.txt' with { 'trace': trace } only %}
+{% include 'FrameworkBundle:Exception:trace.txt.twig' with { 'trace': trace } only %}
 
 {% endfor %}
 {% endif %}

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

@@ -1,7 +1,7 @@
         <traces>
 {% for trace in exception.trace %}
             <trace>
-{% include 'FrameworkBundle:Exception:trace.twig.txt' with { 'trace': trace } only %}
+{% include 'FrameworkBundle:Exception:trace.txt.twig' with { 'trace': trace } only %}
 
             </trace>
 {% endfor %}