Merge pull request #22752 from nextcloud/backport/22587/stable19
[stable19] Check if var debugMode exists
This commit is contained in:
commit
cacaf4b4ee
|
@ -23,7 +23,7 @@ style('core', ['styles', 'header']);
|
|||
<?php endif; ?>
|
||||
</ul>
|
||||
|
||||
<?php if ($_['debugMode']): ?>
|
||||
<?php if (isset($_['debugMode']) && $_['debugMode'] === true): ?>
|
||||
<br />
|
||||
<h3><?php p($l->t('Trace')) ?></h3>
|
||||
<pre><?php p($_['trace']) ?></pre>
|
||||
|
|
Loading…
Reference in New Issue