From 4ce3271205cfcf231d65819a8bd5f486af7a7bdf Mon Sep 17 00:00:00 2001 From: Shannon Date: Mon, 11 Jan 2021 14:16:07 +1100 Subject: [PATCH] adds doc link on not found result --- .../ActionsResults/PublishedContentNotFoundResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.Common/ActionsResults/PublishedContentNotFoundResult.cs b/src/Umbraco.Web.Common/ActionsResults/PublishedContentNotFoundResult.cs index 3e90a40f09..dc87f598b3 100644 --- a/src/Umbraco.Web.Common/ActionsResults/PublishedContentNotFoundResult.cs +++ b/src/Umbraco.Web.Common/ActionsResults/PublishedContentNotFoundResult.cs @@ -52,7 +52,7 @@ namespace Umbraco.Web.Common.ActionsResults await response.WriteAsync("

" + _message + "

"); } - await response.WriteAsync("

This page can be replaced with a custom 404. Check the documentation for \"custom 404\".

"); + await response.WriteAsync("

This page can be replaced with a custom 404. Check the documentation for \"custom 404\".

"); await response.WriteAsync("

This page is intentionally left ugly ;-)

"); await response.WriteAsync(""); }