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; ?>
|
<?php endif; ?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<?php if ($_['debugMode']): ?>
|
<?php if (isset($_['debugMode']) && $_['debugMode'] === true): ?>
|
||||||
<br />
|
<br />
|
||||||
<h3><?php p($l->t('Trace')) ?></h3>
|
<h3><?php p($l->t('Trace')) ?></h3>
|
||||||
<pre><?php p($_['trace']) ?></pre>
|
<pre><?php p($_['trace']) ?></pre>
|
||||||
|
|
Loading…
Reference in New Issue