Index: branches/5.3.x/core/units/helpers/curl_helper.php =================================================================== diff -u -N -r15677 -r15902 --- branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15677) +++ branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15902) @@ -1,6 +1,6 @@ Application->HttpQuery->_transformArrays($data); foreach ($data as $key => $value) { - $params_str .= $key . '=' . urlencode($value) . '&'; + $params_str .= $key . '=' . kUtil::escape($value, kUtil::ESCAPE_URL) . '&'; } $data = $params_str;