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)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Annoying. Thanks for this.