From 9f301f8cc6caa95bddba5ca9f3467a2cf3e73bd9 Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Tue, 19 Feb 2013 02:20:15 +0600 Subject: [PATCH] updates some code docs --- src/Umbraco.Web/WebBootManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);