Index: branches/5.2.x/core/units/helpers/curl_helper.php =================================================================== diff -u -N -r15426 -r15514 --- branches/5.2.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15426) +++ branches/5.2.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15514) @@ -1,6 +1,6 @@ debugMode = $log_status; } - $this->connectionID = curl_init($url); + $request_url = $url; + if ( $this->requestMethod == self::REQUEST_METHOD_GET && $this->requestData ) { + $request_url .= (strpos($request_url, '?') !== false ? '&' : '?') . $this->requestData; + } + + $this->connectionID = curl_init($request_url); + if ( $this->debugMode ) { // collect page data $page_data = Array ();