summaryrefslogtreecommitdiff
path: root/htdocs/postings.php
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/postings.php')
-rw-r--r--htdocs/postings.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/htdocs/postings.php b/htdocs/postings.php
index ee178cb..a40cfb7 100644
--- a/htdocs/postings.php
+++ b/htdocs/postings.php
@@ -66,8 +66,14 @@ foreach ($post->getImages() as $imgid) {
require_once "src/footer.inc.php";
function errorNotFound() {
- // TODO: Better 404 error
- echo "404";
+ // Get the 404 page
+ $page = Page::getByUrl('404');
+ if ($page) {
+ echo $page->getContent();
+ } else {
+ echo "Error: Page not found.";
+ }
+ require_once "src/footer.inc.php";
exit;
}