From 81197a2dd55b4c31e11c0772a372567d3920a55b Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Wed, 19 Oct 2011 04:48:00 +0000 Subject: [PATCH] Respect the Content-Type header developers pass to WP_HTTP. Fixes #18982 git-svn-id: https://develop.svn.wordpress.org/trunk@19000 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-http.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 8940fdd167..e2bfac19c1 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -180,7 +180,8 @@ class WP_Http { } else { if ( is_array( $r['body'] ) || is_object( $r['body'] ) ) { $r['body'] = http_build_query( $r['body'], null, '&' ); - $r['headers']['Content-Type'] = 'application/x-www-form-urlencoded; charset=' . get_option( 'blog_charset' ); + if ( ! isset( $r['headers']['Content-Type'] ) ) + $r['headers']['Content-Type'] = 'application/x-www-form-urlencoded; charset=' . get_option( 'blog_charset' ); $r['headers']['Content-Length'] = strlen( $r['body'] ); }