1
0
Fork 0
OpenSim.land/pages/error.php

9 lines
199 B
PHP
Raw Normal View History

2020-06-03 15:35:33 +00:00
<?php
2021-11-01 06:10:51 +00:00
header("HTTP/1.1 404 Not Found");
$HTML = new HTML();
$HTML->setHTMLTitle("Seite nicht gefunden.");
$HTML->importHTML("style/default/404.html");
$HTML->build();
echo $HTML->ausgabe();
2020-06-03 15:35:33 +00:00
?>