Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/10/2016 03:25:55 AM (9 years ago)
Author:
netweb
Message:

API - Feeds: Use feed_content_type( 'rss2' ) for RSS feeds.

This changeset updates the RSS 2 native mime type application/rss+xml, previously rss-http used text/xml which was removed from WordPress in [WP36230] and [WP32468].

Props thebrandonallen.
Fixes #2901.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/topics/functions.php

    r5951 r5969  
    37813781
    37823782    // Display the feed
    3783     header( 'Content-Type: ' . feed_content_type( 'rss-http' ) . '; charset=' . get_option( 'blog_charset' ), true );
     3783    header( 'Content-Type: ' . feed_content_type( 'rss2' ) . '; charset=' . get_option( 'blog_charset' ), true );
    37843784    header( 'Status: 200 OK' );
    37853785    echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?' . '>'; ?>
Note: See TracChangeset for help on using the changeset viewer.