From 13a2d845c627374841e391dbeb474ca5e636c744 Mon Sep 17 00:00:00 2001 From: Brian Powell Date: Wed, 10 Dec 2014 03:13:49 -0500 Subject: [PATCH] Clean up comments. --- src/Umbraco.Web/UmbracoModule.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Umbraco.Web/UmbracoModule.cs b/src/Umbraco.Web/UmbracoModule.cs index 26dda67bad..633df5c6d5 100644 --- a/src/Umbraco.Web/UmbracoModule.cs +++ b/src/Umbraco.Web/UmbracoModule.cs @@ -50,8 +50,7 @@ namespace Umbraco.Web if (ApplicationContext.Current.OriginalRequestUrl.IsNullOrWhiteSpace()) { // If (HTTP and SSL not required) or (HTTPS and SSL required), use ports from request to configure OriginalRequestUrl. - // Otherwise, user may need to set manually per http://our.umbraco.org/documentation/Using-Umbraco/Config-files/umbracoSettings/#ScheduledTasks if non-standard. - + // Otherwise, user may need to set baseUrl manually per http://our.umbraco.org/documentation/Using-Umbraco/Config-files/umbracoSettings/#ScheduledTasks if non-standard ports used. if ((!httpContext.Request.IsSecureConnection && !GlobalSettings.UseSSL) || (httpContext.Request.IsSecureConnection && GlobalSettings.UseSSL)) { // Use port from request.