From bf9755b27c8bb5f712a233e10488824261dd01f3 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Wed, 18 Nov 2015 19:41:20 +0100 Subject: [PATCH] Don't end response so people can actually hook into `PostRequestHandlerExecute` --- src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs b/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs index df5584ce11..d737885020 100644 --- a/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs +++ b/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs @@ -44,8 +44,6 @@ namespace Umbraco.Web.Routing response.Write("

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

"); response.Write("

This page is intentionally left ugly ;-)

"); response.Write(""); - - response.End(); } public bool IsReusable