diff --git a/src/Umbraco.Web/WebBootManager.cs b/src/Umbraco.Web/WebBootManager.cs index 9e130e8fe9..946137dc0c 100644 --- a/src/Umbraco.Web/WebBootManager.cs +++ b/src/Umbraco.Web/WebBootManager.cs @@ -134,8 +134,8 @@ namespace Umbraco.Web var webServiceRoutes = RouteTable.Routes.MapRoute( "Umbraco_web_services", "Umbraco/RestServices/{controller}/{action}/{id}", - new {controller = "SaveFileController", action = "Index", id = UrlParameter.Optional}, - //VERY IMPORTANT! for this route, only match controllers in this namespace! + new { controller = "SaveFileController", action = "Index", id = UrlParameter.Optional }, + //look in this namespace for controllers new string[] { "Umbraco.Web.WebServices" } ); webServiceRoutes.DataTokens.Add("area", umbracoPath);