aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2016-01-09 15:32:11 +0100
committerTristan Darricau <tristan.darricau@sensiolabs.com>2016-01-09 15:35:17 +0100
commit6594ef8b1e0b63f911fbcc2b8859fcfb09977e2f (patch)
treeb8ca5fe922f7a5cd9a867dd03760040430a25980 /phpBB/adm
parent7f8b6c02c6380d44d2bc3c402cfa5e9953d4819b (diff)
downloadforums-6594ef8b1e0b63f911fbcc2b8859fcfb09977e2f.tar
forums-6594ef8b1e0b63f911fbcc2b8859fcfb09977e2f.tar.gz
forums-6594ef8b1e0b63f911fbcc2b8859fcfb09977e2f.tar.bz2
forums-6594ef8b1e0b63f911fbcc2b8859fcfb09977e2f.tar.xz
forums-6594ef8b1e0b63f911fbcc2b8859fcfb09977e2f.zip
[ticket/14306] CS and correctly handle exception loop
PHPBB3-14306
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/overall_header.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html
index 4212f01f15..3feb94f89c 100644
--- a/phpBB/adm/style/overall_header.html
+++ b/phpBB/adm/style/overall_header.html
@@ -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 %}