diff --git a/wp-includes/feed-rss.php b/wp-includes/feed-rss.php index 1650434405..a355a8af40 100644 --- a/wp-includes/feed-rss.php +++ b/wp-includes/feed-rss.php @@ -5,7 +5,7 @@ * @package WordPress */ -header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true); +header('Content-Type: ' . feed_content_type('rss') . '; charset=' . get_option('blog_charset'), true); $more = 1; echo ''; ?> diff --git a/wp-includes/feed-rss2-comments.php b/wp-includes/feed-rss2-comments.php index 703fa87cfa..c8e8d498ea 100644 --- a/wp-includes/feed-rss2-comments.php +++ b/wp-includes/feed-rss2-comments.php @@ -5,7 +5,7 @@ * @package WordPress */ -header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true); +header('Content-Type: ' . feed_content_type('rss2') . '; charset=' . get_option('blog_charset'), true); echo ''; diff --git a/wp-includes/feed-rss2.php b/wp-includes/feed-rss2.php index 2390c2d957..c82fc63c56 100644 --- a/wp-includes/feed-rss2.php +++ b/wp-includes/feed-rss2.php @@ -5,7 +5,7 @@ * @package WordPress */ -header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true); +header('Content-Type: ' . feed_content_type('rss2') . '; charset=' . get_option('blog_charset'), true); $more = 1; echo ''; diff --git a/wp-includes/version.php b/wp-includes/version.php index 4e4b76c9dc..34277c17a2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32467'; +$wp_version = '4.3-alpha-32468'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.