aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_html.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-04-28 05:12:25 +0000
committerrvelices <rv-github@modusoptimus.com>2006-04-28 05:12:25 +0000
commitaaea0a1653e42bfa2db8e5be2e36f5e22be16631 (patch)
treec813db5f5550be832cc71d2f334f94a86de28839 /include/functions_html.inc.php
parent0510cfdc5ad38487600f8f1bf8e4d4f9747781df (diff)
merge -r1287 from branch-1_6 to trunk
bug 349: Nicer display messages instead of "die" when urls cannot be solved (also set 404 status code for bots) git-svn-id: http://piwigo.org/svn/trunk@1288 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_html.inc.php')
-rw-r--r--include/functions_html.inc.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php
index bc967b752..65cbc879c 100644
--- a/include/functions_html.inc.php
+++ b/include/functions_html.inc.php
@@ -591,4 +591,22 @@ function access_denied()
redirect($login_url);
}
}
+
+/**
+ * exits the current script with 404 code when a page cannot be found
+ * @param string msg a message to display
+ * @param string alternate_url redirect to this url
+ */
+function page_not_found($msg, $alternate_url=null)
+{
+ header('HTTP/1.1 404 Not found');
+ header('Status: 404 Not found');
+ if ($alternate_url==null)
+ $alternate_url = make_index_url();
+ redirect( $alternate_url,
+ '<div style="text-align:left; margin-left:5em;margin-bottom:5em;">
+<h1 style="text-align:left; font-size:36px;">Page not found</h1><br/>'
+.$msg.'</div>',
+ 5 );
+}
?>