You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
436 B
PHP

<?php
$content = new PageSection('error404');
$content->set('address', $relative_request_url);
$content->set('fulladdress', $absolute_request_url);
$content->set('referrer', isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '');
$page = new PageSection('base');
$page->set('title', 'Page not found');
$page->set('content', $content);
$page->set('alerts', array());
header('HTTP/1.1 404 Not Found');
echo $page->generate();