summaryrefslogtreecommitdiffstats
path: root/system/404.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/404.php')
-rw-r--r--system/404.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/system/404.php b/system/404.php
index 1553291..53ec9bd 100644
--- a/system/404.php
+++ b/system/404.php
@@ -12,12 +12,9 @@ if(!defined('ROOT')) {
try {
$MainTemplate = Template\Factory::build('main');
$MainTemplate->set('NAME', '404 Not Found');
- $MainTemplate->set('HEAD', [
- 'NAME' => '404 Not Found',
- 'DESC' => "The requested URL {$_SERVER['REQUEST_URI']} was not found on this server."
- ]);
-
+ $MainTemplate->set('HEAD', ['NAME' => '404 Not Found']);
$MainTemplate->set('HTML', Template\Factory::build('404'));
+
echo $MainTemplate;
}