From 4802aeada5b8fde0848852ee56454c887738ead4 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Tue, 11 Apr 2017 22:51:24 +0200 Subject: The control structures "require_once" have been replaced by a simple "require" (except within the 403.php and 404.php where it makes sense, because these files can be directly called or included). --- core/namespace/Application.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/namespace') diff --git a/core/namespace/Application.php b/core/namespace/Application.php index 5bcd724..e5afb85 100644 --- a/core/namespace/Application.php +++ b/core/namespace/Application.php @@ -148,7 +148,7 @@ class Application { # Exit application with the 403 error page #=============================================================================== public static function error403(): void { - require_once ROOT.'403.php'; + require ROOT.'403.php'; exit(); } @@ -156,7 +156,7 @@ class Application { # Exit application with the 404 error page #=============================================================================== public static function error404(): void { - require_once ROOT.'404.php'; + require ROOT.'404.php'; exit(); } } -- cgit v1.2.3