diff options
Diffstat (limited to 'controllers/base.php')
-rw-r--r-- | controllers/base.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/controllers/base.php b/controllers/base.php index c4a69bf0..c7e59b18 100644 --- a/controllers/base.php +++ b/controllers/base.php @@ -90,4 +90,9 @@ abstract class Base $this->session->flash(t('There is no active project, the first step is to create a new project.')); $this->response->redirect('?controller=project&action=create'); } + + public function notfound() + { + $this->response->html($this->template->layout('app_notfound', array('title' => t('Page not found')))); + } } |