updates missing code block

This commit is contained in:
Shannon Deminick
2012-09-29 11:19:19 +07:00
parent 1aebce7ad6
commit 840109dc58

View File

@@ -70,7 +70,7 @@ namespace Umbraco.Web.Templates
// else
if (!String.IsNullOrEmpty(url))
{
string resolvedUrl = (url.Substring(0, 1) == "/") ? IOHelper.ResolveUrl(url.Substring(1)) : ResolveUrl(url);
string resolvedUrl = (url.Substring(0, 1) == "/") ? IOHelper.ResolveUrl(url.Substring(1)) : IOHelper.ResolveUrl(url);
text = text.Replace(url, resolvedUrl);
}
}