Ignore:
Timestamp:
Sep 2, 2011, 1:37:06 PM (13 years ago)
Author:
bayral
Message:

changing dot.net framework prerequisite from framework 4.0 to framework 4.0 client profile according to setup process download

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/Proxy/Helper/PwgProxyReponseHelper.cs

    r11872 r12035  
    8080                foreach (T occurance in values)
    8181                {
    82                     queryStringBuilder.AppendFormat(FormatString, paramName, HttpUtility.UrlEncode(GetString(occurance)));
     82                    queryStringBuilder.AppendFormat(FormatString, paramName, Uri.EscapeUriString(GetString(occurance)));
    8383                    firstOcc = false;
    8484                }
     
    106106                }
    107107
    108                 ParamValue = HttpUtility.UrlEncode(GetString(value));
     108                ParamValue = Uri.EscapeUriString(GetString(value));
    109109               
    110110                queryStringBuilder.AppendFormat(FormatString, paramName, ParamValue);
Note: See TracChangeset for help on using the changeset viewer.