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

15 lines
355 B
PHTML

<?php if ($this->title): ?>
<div class="controls">
<h1><?= $this->escape($title) ?></h1>
</div>
<?php endif ?>
<div class="content">
<?php if ($this->message): ?>
<p><strong><?= nl2br($this->escape($message)) ?></strong></p>
<?php endif ?>
<?php if (isset($stackTrace)) : ?>
<hr />
<pre><?= $this->escape($stackTrace) ?></pre>
<?php endif ?>
</div>