mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 18:15:28 +03:00
2bbce8ebef
* refactor * fix: bug in previous refactor * chore: exclude phpcompat sniff due to bug in phpcompat * fix: do not leak absolute paths * refactor/fix: batch extensions checking, fix DOS issue
25 lines
445 B
PHP
25 lines
445 B
PHP
<div style="width: 60%; margin: 30px auto">
|
|
|
|
<h1>
|
|
<?= e($title ?? 'Something went wrong') ?>
|
|
</h1>
|
|
|
|
<br>
|
|
<?= e($message) ?>
|
|
<br>
|
|
<br>
|
|
|
|
<?php if (isset($stacktrace)): ?>
|
|
<h2>Stacktrace</h2>
|
|
<br>
|
|
|
|
<?php foreach ($stacktrace as $frame) : ?>
|
|
<code>
|
|
<?= e($frame) ?>
|
|
</code>
|
|
<br>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|