From c07423f600bf419eb27b8f9358b99abada3083dd Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 28 Aug 2022 16:41:08 +0200 Subject: [PATCH] app/controllers/ControllerBase.php: set namespace in _forward404() --- app/controllers/ControllerBase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/ControllerBase.php b/app/controllers/ControllerBase.php index 522c8fa..d568744 100644 --- a/app/controllers/ControllerBase.php +++ b/app/controllers/ControllerBase.php @@ -18,6 +18,7 @@ class ControllerBase extends Controller protected function _forward404() { $this->dispatcher->forward(array( + 'namespace' => 'App\\Controller', 'controller' => 'error', 'action' => 'show404' ));