Fix casing of 'URL' (#9080)
This commit is contained in:
@@ -30,11 +30,11 @@ namespace Umbraco.Web.Routing
|
||||
response.Clear();
|
||||
|
||||
var frequest = Current.UmbracoContext.PublishedRequest;
|
||||
var reason = "Cannot render the page at url '{0}'.";
|
||||
var reason = "Cannot render the page at URL '{0}'.";
|
||||
if (frequest.HasPublishedContent == false)
|
||||
reason = "No umbraco document matches the url '{0}'.";
|
||||
reason = "No umbraco document matches the URL '{0}'.";
|
||||
else if (frequest.HasTemplate == false)
|
||||
reason = "No template exists to render the document at url '{0}'.";
|
||||
reason = "No template exists to render the document at URL '{0}'.";
|
||||
|
||||
response.Write("<html><body><h1>Page not found</h1>");
|
||||
response.Write("<h2>");
|
||||
|
||||
Reference in New Issue
Block a user