From c50a3e7a27f01a6be53ab337019b234635d95a4a Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Wed, 21 Nov 2012 09:46:04 -0100 Subject: [PATCH] I broke the build, oh noes! Sorry. :-) --- src/Umbraco.Web/umbraco.presentation/macro.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/umbraco.presentation/macro.cs b/src/Umbraco.Web/umbraco.presentation/macro.cs index 6e26718514..7bca6df326 100644 --- a/src/Umbraco.Web/umbraco.presentation/macro.cs +++ b/src/Umbraco.Web/umbraco.presentation/macro.cs @@ -1559,7 +1559,7 @@ namespace umbraco string querystring = "umbPageId=" + PageID + "&umbVersionId=" + PageVersion; IDictionaryEnumerator ide = attributes.GetEnumerator(); while (ide.MoveNext()) - querystring += "&umb_" + ide.Key + "=" + HttpContext.Current.Server.UrlEncode((ide.Value ?? string.Empty).ToString())); + querystring += "&umb_" + ide.Key + "=" + HttpContext.Current.Server.UrlEncode((ide.Value ?? string.Empty).ToString()); // Create a new 'HttpWebRequest' Object to the mentioned URL. string retVal = string.Empty;