From 39d45ba4b02365037d1bd3eac4e334f4f5fda29a Mon Sep 17 00:00:00 2001 From: Morten Christensen Date: Fri, 1 Feb 2013 08:21:44 -0100 Subject: [PATCH] Fixes U4-1618 --- src/Umbraco.Core/Models/ContentExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Models/ContentExtensions.cs b/src/Umbraco.Core/Models/ContentExtensions.cs index 8b65a1d3a5..788dccc285 100644 --- a/src/Umbraco.Core/Models/ContentExtensions.cs +++ b/src/Umbraco.Core/Models/ContentExtensions.cs @@ -407,7 +407,7 @@ namespace Umbraco.Core.Models //Check for umbracoUrlName convention if (property.Alias == "umbracoUrlName" && property.Value != null && property.Value.ToString().Trim() != string.Empty) - xml.SetAttributeValue("urlName", property.Value); + xml.SetAttributeValue("urlName", property.Value.ToString().FormatUrl().ToLower()); } return xml;