Files
gallery3/core/views/welcome_syscheck.html.php
Bharat Mediratta d742de4e11 Improve welcome scaffolding to walk you through getting the var
directory set up correctly and a database config file in place.
2008-11-02 19:56:57 +00:00

50 lines
900 B
PHP

<? defined("SYSPATH") or die("No direct script access."); ?>
<html>
<head>
<title>Gallery3 Scaffold</title>
<style>
body {
font-family: Trebuchet MS;
}
p {
margin: 0 0 0 0;
padding: 5px;
}
pre {
margin: 0;
padding-left: 1em;
}
.error {
color: red;
}
div.block {
border: 1px solid black;
margin-bottom: 5px;
paddding: 1em;
}
</style>
</head>
<body>
<? 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 ?>
</body>
</html>