Check if debugMode is defined before using it
Else the sabre error page (where the var is not defined) will throw warnings all the time. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
8054bc921e
commit
41783a0a76
|
@ -14,7 +14,7 @@ style('core', ['styles', 'header']);
|
|||
<ul>
|
||||
<li><?php p($l->t('Remote Address: %s', [$_['remoteAddr']])) ?></li>
|
||||
<li><?php p($l->t('Request ID: %s', [$_['requestID']])) ?></li>
|
||||
<?php if ($_['debugMode']): ?>
|
||||
<?php if (isset($_['debugMode']) && $_['debugMode'] === true): ?>
|
||||
<li><?php p($l->t('Type: %s', [$_['errorClass']])) ?></li>
|
||||
<li><?php p($l->t('Code: %s', [$_['errorCode']])) ?></li>
|
||||
<li><?php p($l->t('Message: %s', [$_['errorMsg']])) ?></li>
|
||||
|
|
Loading…
Reference in New Issue