Fix casing of 'URL' (#9080)

This commit is contained in:
Ronald Barendse
2020-10-05 20:48:38 +02:00
committed by GitHub
parent eaa0a3ba64
commit 2bfef74191
163 changed files with 554 additions and 554 deletions

View File

@@ -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>");