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/Router.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/namespace/Router.php') 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