icingaweb2/application/views/scripts/error/error.phtml

12 lines
356 B
PHTML

<?php if (! $this->compact && !$hideControls): ?>
<div class="controls">
<?= $tabs->showOnlyCloseButton(); ?>
</div>
<?php endif ?>
<div class="content">
<p><strong><?= nl2br($this->escape($message)); ?></strong></p>
<?php if (isset($stackTrace)): ?>
<hr />
<pre><?= $this->escape($stackTrace) ?></pre>
<?php endif ?>
</div>