U4-4241 - UrlAbsolute() returns relative urls

This commit is contained in:
Stephan
2014-02-17 08:40:30 +01:00
parent 846f4b5b6c
commit 3634a77d61

View File

@@ -83,7 +83,7 @@ namespace Umbraco.Web
throw new InvalidOperationException("Cannot resolve a Url for a content item when UmbracoContext.Current is null.");
if (UmbracoContext.Current.UrlProvider == null)
throw new InvalidOperationException("Cannot resolve a Url for a content item when UmbracoContext.Current.UrlProvider is null.");
return UmbracoContext.Current.UrlProvider.GetUrl(content.Id);
return UmbracoContext.Current.UrlProvider.GetUrl(content.Id, true);
case PublishedItemType.Media:
throw new NotSupportedException("AbsoluteUrl is not supported for media types.");
default: