d582054c77
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@1 b3834d28-1941-0410-a4f8-b48e95affb8f
9 lines
281 B
PHP
9 lines
281 B
PHP
<?php
|
|
header('HTTP/1.x 404 Not Found');
|
|
$this->includeTemplate($GLOBALS['top_include']);
|
|
if (!$error) {
|
|
echo '<h1>'. T_('Not Found') .'</h1>';
|
|
echo '<p>'. T_('The requested URL was not found on this server') .'</p>';
|
|
}
|
|
$this->includeTemplate($GLOBALS['bottom_include']);
|
|
?>
|