|
@@ -1,7 +1,7 @@
|
|
|
{% if trace.function %}
|
|
|
at <strong><abbr title="{{ trace.class }}">{{ trace.short_class }}</abbr>{{ trace.type ~ trace.function }}</strong>({{ trace.args|format_args }})<br />
|
|
|
{% endif %}
|
|
|
-{% if trace.file and trace.line %}
|
|
|
+{% if trace.file is defined and trace.line is defined %}
|
|
|
in <em>{{ trace.file|format_file(trace.line) }}</em>
|
|
|
<a href="#" onclick="toggle('trace_{{ prefix ~ '_' ~ i }}'); return false;">»</a><br />
|
|
|
<div id="trace_{{ prefix ~ '_' ~ i }}" class="trace" style="display: {{ 0 == i ? 'block' : 'none' }}">
|