mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-21 11:59:13 -04:00
23 lines
491 B
PHP
23 lines
491 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<? foreach ($errors as $error): ?>
|
|
<div class="block">
|
|
<p class="error">
|
|
<?= $error->message ?>
|
|
</p>
|
|
<? foreach ($error->instructions as $line): ?>
|
|
<pre><?= $line ?></pre>
|
|
<? endforeach ?>
|
|
|
|
<? if (!empty($error->message2)): ?>
|
|
<p class="error">
|
|
<?= $error->message2 ?>
|
|
</p>
|
|
<? endif ?>
|
|
</div>
|
|
<? endforeach ?>
|
|
<? if (empty($errors)): ?>
|
|
<p class="success">
|
|
Your system is ready to go.
|
|
</p>
|
|
<? endif ?>
|