diff --git a/wp-includes/http.php b/wp-includes/http.php index 86e3e9024..ad6768234 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -214,7 +214,7 @@ class WP_Http { $transports = WP_Http::_getTransport(); } else { if ( is_array( $r['body'] ) || is_object( $r['body'] ) ) { - $r['body'] = http_build_query($r['body']); + $r['body'] = http_build_query($r['body'], null, '&'); $r['headers']['Content-Type'] = 'application/x-www-form-urlencoded; charset=' . get_option('blog_charset'); $r['headers']['Content-Length'] = strlen($r['body']); }