summaryrefslogtreecommitdiff
blob: fc614c540ec544ed0ce0e214411bbf83ded84d92 (plain)
1
2
3
4
5
6
7
8
9
<?php
function init_404() {
	header('HTTP/1.0 404 Not Found', true, 404);
	return array('title' => '404: Not Found');
}
function body_404(&$S) {
	echo print_error('Page Not Found!','The page you are trying to reach, <i>'.$S['conf']['url'].'/'.$S['request'].'</i> does not exist.');
}
?>