From 48ec6434414b7c3d94b9464bb90d982b0d39603f Mon Sep 17 00:00:00 2001 From: rmccue Date: Thu, 5 Jan 2017 03:05:53 +0000 Subject: [PATCH] Feeds: Don't override the Content-Type header inside fetc_feed() SimplePie can set the Content-Type header automatically with the correct charset for convenience, but we already force the charset to match the site's, making it redundant at best. At worst, SimplePie incorrectly overrides the content-type for non-HTML content (such as API requests). Props dlh, stevenkword. Fixes #39066. git-svn-id: https://develop.svn.wordpress.org/trunk@39681 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/feed.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wp-includes/feed.php b/src/wp-includes/feed.php index e6686c040e..dbeb3a0f83 100644 --- a/src/wp-includes/feed.php +++ b/src/wp-includes/feed.php @@ -702,7 +702,6 @@ function fetch_feed( $url ) { do_action_ref_array( 'wp_feed_options', array( &$feed, $url ) ); $feed->init(); $feed->set_output_encoding( get_option( 'blog_charset' ) ); - $feed->handle_content_type(); if ( $feed->error() ) return new WP_Error( 'simplepie-error', $feed->error() );