diff --git a/wp-includes/feed.php b/wp-includes/feed.php index feb690d8da..7b1f30c78a 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -630,10 +630,11 @@ function feed_content_type( $type = '' ) { $type = get_default_feed(); $types = array( - 'rss' => 'application/rss+xml', - 'rss2' => 'application/rss+xml', - 'atom' => 'application/atom+xml', - 'rdf' => 'application/rdf+xml' + 'rss' => 'application/rss+xml', + 'rss2' => 'application/rss+xml', + 'rss-http' => 'text/xml', + 'atom' => 'application/atom+xml', + 'rdf' => 'application/rdf+xml' ); $content_type = ( !empty($types[$type]) ) ? $types[$type] : 'application/octet-stream'; diff --git a/wp-includes/version.php b/wp-includes/version.php index fee5f51006..3e4e523999 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5.1-alpha-37275'; +$wp_version = '4.5.1-alpha-37284'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.