Archived
1
0
Fork 0

app/controllers/ControllerBase.php: set namespace in _forward404()

This commit is contained in:
Henrik Hautakoski 2022-08-28 16:41:08 +02:00
parent 7315885877
commit c07423f600

View file

@ -18,6 +18,7 @@ class ControllerBase extends Controller
protected function _forward404()
{
$this->dispatcher->forward(array(
'namespace' => 'App\\Controller',
'controller' => 'error',
'action' => 'show404'
));