1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-17 19:29:28 +01:00

Update 404.php

This commit is contained in:
anonfagola 2014-09-24 16:52:23 -07:00
parent c291952477
commit ca0e7ffc5d

12
404.php
View File

@ -8,13 +8,11 @@ $errorimages = array("http://www.submitawebsite.com/blog/wp-content/uploads/2010
$errorimage = $errorimages[array_rand($errorimages)];
$page = <<<EOT
<center>
<div class="ban">
<h2>404 Not Found</h2>
<img src="{$errorimage}" style="width: 700px;">
</div>
</center>
<div class="ban">
<h2 style="text-align: center">404 Not Found</h2>
<img src="{$errorimage}" style="width: 700px;">
</div>
EOT;
echo Element("page.html", array("config" => $config, "body" => $page, "title" => ""));