Corrected document outline

This commit is contained in:
Anders Brohäll
2020-03-06 18:04:01 +01:00
committed by Sebastiaan Janssen
parent a0aad045fb
commit 46686ffd90

View File

@@ -37,9 +37,9 @@ namespace Umbraco.Web.Routing
reason = "No template exists to render the document at url '{0}'.";
response.Write("<html><body><h1>Page not found</h1>");
response.Write("<h3>");
response.Write("<h2>");
response.Write(string.Format(reason, HttpUtility.HtmlEncode(Current.UmbracoContext.OriginalRequestUrl.PathAndQuery)));
response.Write("</h3>");
response.Write("</h2>");
if (string.IsNullOrWhiteSpace(_message) == false)
response.Write("<p>" + _message + "</p>");
response.Write("<p>This page can be replaced with a custom 404. Check the documentation for \"custom 404\".</p>");