mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-31 13:55:07 +03:00
19 lines
366 B
PHP
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>
|
|
|