Skip to:
Content

bbPress.org

Opened 12 years ago

Closed 12 years ago

#1993 closed defect (bug) (fixed)

RSS Feeds broken in 2.1.2

Reported by: steveatty's profile SteveAtty Owned by:
Milestone: 2.2 Priority: normal
Severity: normal Version: 2.1.2
Component: API - Feeds 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
12 years ago

  • Milestone changed from Awaiting Review to 2.2

Annoying. Thanks for this.

#2 @johnjamesjacoby
12 years ago

  • Resolution set to fixed
  • Status changed from new to closed

(In [4267]) Feeds:

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