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

13 lines
322 B
PHTML
Raw Normal View History

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