summaryrefslogtreecommitdiff
path: root/app/Controller/Base.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/Base.php')
-rw-r--r--app/Controller/Base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php
index 7eb75b07..2c8fb221 100644
--- a/app/Controller/Base.php
+++ b/app/Controller/Base.php
@@ -174,7 +174,7 @@ abstract class Base
*/
public function notfound($no_layout = false)
{
- $this->response->html($this->template->layout('app_notfound', array(
+ $this->response->html($this->template->layout('app/notfound', array(
'title' => t('Page not found'),
'no_layout' => $no_layout,
)));
@@ -188,7 +188,7 @@ abstract class Base
*/
public function forbidden($no_layout = false)
{
- $this->response->html($this->template->layout('app_forbidden', array(
+ $this->response->html($this->template->layout('app/forbidden', array(
'title' => t('Access Forbidden'),
'no_layout' => $no_layout,
)));