I broke the build, oh noes! Sorry. :-)

This commit is contained in:
Sebastiaan Janssen
2012-11-21 09:46:04 -01:00
parent 811cbe2339
commit c50a3e7a27

View File

@@ -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;