1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/14306] CS and correctly handle exception loop

PHPBB3-14306
This commit is contained in:
Tristan Darricau
2016-01-09 15:32:11 +01:00
parent 7f8b6c02c6
commit 6594ef8b1e
2 changed files with 14 additions and 8 deletions

View File

@@ -146,10 +146,10 @@ function popup(url, width, height, name)
<div id="main">
<div class="main">
<!-- IF CONTAINER_EXCEPTION !== false -->
{% if CONTAINER_EXCEPTION !== false %}
<div class="errorbox">
<p>{L_CONTAINER_EXCEPTION}</p>
<p>{L_EXCEPTION}{L_COLON} {{ CONTAINER_EXCEPTION.getMessage() }}</p>
<p>{{ lang('CONTAINER_EXCEPTION') }}</p>
<p>{{ lang('EXCEPTION') }}{{ lang('COLON') }} {{ CONTAINER_EXCEPTION.getMessage() }}</p>
<pre>{{ CONTAINER_EXCEPTION.getTraceAsString() }}</pre>
</div>
<!-- ENDIF -->
{% endif %}