From dc2de4b5e7ba913d31cebb477b04fde488af097a Mon Sep 17 00:00:00 2001 From: Floris Robbemont Date: Wed, 7 Aug 2013 15:06:41 +0200 Subject: [PATCH] U4-2596: UmbracoControllerFactory method ReleaseController should be virtual --- src/Umbraco.Web/Mvc/UmbracoControllerFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Mvc/UmbracoControllerFactory.cs b/src/Umbraco.Web/Mvc/UmbracoControllerFactory.cs index 63eaaa5e9a..02ff701c8b 100644 --- a/src/Umbraco.Web/Mvc/UmbracoControllerFactory.cs +++ b/src/Umbraco.Web/Mvc/UmbracoControllerFactory.cs @@ -54,7 +54,7 @@ namespace Umbraco.Web.Mvc /// Releases the specified controller. /// /// The controller. - public void ReleaseController(IController controller) + public virtual void ReleaseController(IController controller) { _innerFactory.ReleaseController(controller); }