Skip to content

Commit

Permalink
[FrameworkBundle] fixed template names
Browse files Browse the repository at this point in the history
  • Loading branch information
avalanche123 authored and fabpot committed Jan 22, 2011
1 parent c13b0db commit 5ff0ded
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
@@ -1,3 +1,3 @@
/*
{% include 'FrameworkBundle:Exception:exception.twig.txt' with { 'exception': exception } %}
{% include 'FrameworkBundle:Exception:exception.txt.twig' with { 'exception': exception } %}
*/
@@ -1,3 +1,3 @@
/*
{% include 'FrameworkBundle:Exception:exception.twig.txt' with { 'exception': exception } %}
{% include 'FrameworkBundle:Exception:exception.txt.twig' with { 'exception': exception } %}
*/
@@ -1 +1 @@
{% include 'FrameworkBundle:Exception:exception.twig.xml' with { 'exception': exception } %}
{% include 'FrameworkBundle:Exception:exception.xml.twig' with { 'exception': exception } %}
Expand Up @@ -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,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,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 %}
Expand Down

0 comments on commit 5ff0ded

Please sign in to comment.