From 6feb5fe0d45196af4a9b2b058cefdd15f6007522 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Tue, 11 Apr 2017 04:10:46 +0200 Subject: Error pages for HTTP status code 403 and 404 moved to another location (preparations for the next commits in which the system directory will be moved to a non-public directory). --- core/namespace/Application.php | 2 +- core/namespace/Router.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/namespace/Application.php b/core/namespace/Application.php index a43871e..329d56d 100644 --- a/core/namespace/Application.php +++ b/core/namespace/Application.php @@ -141,7 +141,7 @@ class Application { #=============================================================================== public static function exit($code = 500) { http_response_code($code); - $code === 404 AND require_once(ROOT."system/404.php"); + $code === 404 AND require_once ROOT.'404.php'; exit(); } } diff --git a/core/namespace/Router.php b/core/namespace/Router.php index ad46033..f0e7e2a 100644 --- a/core/namespace/Router.php +++ b/core/namespace/Router.php @@ -57,8 +57,7 @@ class Router { } if($route_found === FALSE) { - http_response_code(404); - require_once 'system/404.php'; + require_once ROOT.'404.php'; } } } -- cgit v1.2.3