2008-11-02 19:56:57 +00:00
|
|
|
<? defined("SYSPATH") or die("No direct script access."); ?>
|
2008-11-02 21:12:15 +00:00
|
|
|
<? foreach ($errors as $error): ?>
|
|
|
|
|
<div class="block">
|
|
|
|
|
<p class="error">
|
|
|
|
|
<?= $error->message ?>
|
|
|
|
|
</p>
|
|
|
|
|
<? foreach ($error->instructions as $line): ?>
|
|
|
|
|
<pre><?= $line ?></pre>
|
|
|
|
|
<? endforeach ?>
|
2008-11-02 19:56:57 +00:00
|
|
|
|
2008-11-02 21:12:15 +00:00
|
|
|
<? 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 ?>
|