rss-bridge/templates/error.html.php
2022-07-08 20:39:13 +02:00

19 lines
366 B
PHP

<div style="width: 60%; margin: 30px auto">
<h1>Something went wrong</h1>
<br>
<?= e($message) ?>
<br>
<br>
<?php if (isset($stacktrace)): ?>
<?php foreach ($stacktrace as $frame) : ?>
<code>
<?= e($frame) ?>
</code>
<br>
<?php endforeach; ?>
<?php endif; ?>
</div>