Index: branches/5.3.x/core/units/helpers/curl_helper.php =================================================================== diff -u -N -r15928 -r15974 --- branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15928) +++ branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15974) @@ -1,6 +1,6 @@ Application->HttpQuery->_transformArrays($data); - - foreach ($data as $key => $value) { - $params_str .= $key . '=' . kUtil::escape($value, kUtil::ESCAPE_URL) . '&'; - } - - $data = $params_str; + $data = http_build_query($data); } $this->requestData = $data; @@ -532,4 +525,4 @@ return ($this->lastHTTPCode == 200) || ($this->lastHTTPCode >= 300 && $this->lastHTTPCode < 310); } - } + } \ No newline at end of file