Index: branches/5.2.x/core/units/helpers/curl_helper.php =================================================================== diff -u -N -r15514 -r15856 --- branches/5.2.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15514) +++ branches/5.2.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15856) @@ -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;