Opened 12 years ago
Closed 12 years ago
#1993 closed defect (bug) (fixed)
RSS Feeds broken in 2.1.2
Reported by: | 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)
Note: See
TracTickets for help on using
tickets.
Annoying. Thanks for this.