From 8f74299c257f727a778037823fc685c13ce51d3c Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 6 Dec 2014 19:09:52 +0000 Subject: [PATCH] Fixed title of 404 pages --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index d2a63b2..27c1ced 100755 --- a/index.php +++ b/index.php @@ -672,7 +672,7 @@ switch($_GET["action"]) { //editing is disabled, show an error message http_response_code(404); - exit(renderpage("

" . $_GET["page"] . " - $sitename", $_GET["page"] . " does not exist.

Since editing is currently disabled on this wiki, you may not create this page. If you feel that this page should exist, try contacting this wiki's Administrator.

")); + exit(renderpage("" . $_GET["page"] . " - 404 - $sitename", "

" . $_GET["page"] . " does not exist.

Since editing is currently disabled on this wiki, you may not create this page. If you feel that this page should exist, try contacting this wiki's Administrator.

")); } } $title = $_GET["page"] . " - $sitename";