summaryrefslogtreecommitdiff
path: root/src/web/_controller/error.php
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-12-12 10:14:46 -0500
committerFreya Murphy <freya@freyacat.org>2024-12-12 10:14:46 -0500
commit859f31065da728fcb1387645ab1c92390b372412 (patch)
tree29457dce1cd2269ac0446a59f3fe601476895f29 /src/web/_controller/error.php
parentswitch to POST for posting comments (diff)
downloadwebsite-859f31065da728fcb1387645ab1c92390b372412.tar.gz
website-859f31065da728fcb1387645ab1c92390b372412.tar.bz2
website-859f31065da728fcb1387645ab1c92390b372412.zip
refactor _views folder
Diffstat (limited to '')
-rw-r--r--src/web/_controller/error.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_controller/error.php b/src/web/_controller/error.php
index 30bd797..4195531 100644
--- a/src/web/_controller/error.php
+++ b/src/web/_controller/error.php
@@ -15,7 +15,7 @@ class Error_controller extends Controller {
$data = $this->error_model->get_data($code);
$this->view('header', $data);
- $this->view('apps/error', $data);
+ $this->view('error/main', $data);
$this->view('footer', $data);
}