Skip to:
Content

bbPress.org

Opened 14 years ago

Closed 14 years ago

#1993 closed defect (bug) (fixed)

RSS Feeds broken in 2.1.2

Reported by: SteveAtty Owned by:
Priority: normal Milestone: 2.2
Component: API - Feeds Version: 2.1.2
Severity: normal Keywords:
Cc:

Description

bbp-reply-functions.php and bbp-topic-functions contain incorrect calls for two of the fields put out in the RSS feed headers which causes the Feedburner feed validator report the feed as invalid.

The code that is causing problems is:

<pubDate><?php echo mysql2date( 'D, d M Y H:i:s O', '', false ); ?></pubDate>
<generator>http://bbpress.org/?v=<?php bbp_version(); ?></generator>
<language><?php echo get_option( 'rss_language' ); ?></language>

it needs to be changed to:

<pubDate><?php echo mysql2date( 'D, d M Y H:i:s O', current_time('mysql'), false ); ?></pubDate>
<generator>http://bbpress.org/?v=<?php bbp_version(); ?></generator>
<language><?php bloginfo_rss( 'language' ); ?></language>

Change History (2)

#1 @johnjamesjacoby
14 years ago

  • Milestone Awaiting Review2.2

Annoying. Thanks for this.

#2 @johnjamesjacoby
14 years ago

  • Resolutionfixed
  • Status newclosed

(In [4267]) Feeds:

  • Fix feed generation time for topics and replies.
  • Fixes #1993.
  • Props SteveAtty.
Note: See TracTickets for help on using tickets.