Ticket #9044: http_remove_seperator.patch
| File http_remove_seperator.patch, 579 bytes (added by tomontoast, 4 years ago) |
|---|
-
http.php
414 414 $transports = WP_Http::_getTransport($r); 415 415 } else { 416 416 if ( is_array( $r['body'] ) || is_object( $r['body'] ) ) { 417 $r['body'] = http_build_query($r['body'], null , '&');417 $r['body'] = http_build_query($r['body'], null); 418 418 $r['headers']['Content-Type'] = 'application/x-www-form-urlencoded; charset=' . get_option('blog_charset'); 419 419 $r['headers']['Content-Length'] = strlen($r['body']); 420 420 }
