summaryrefslogtreecommitdiffstats
path: root/core/namespace/Application.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Application.php')
-rw-r--r--core/namespace/Application.php4
1 files changed, 2 insertions, 2 deletions
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();
}
}