Proper lastBuildDate for rss2 comments feed. Props peaceablewhale. fixes #9567
git-svn-id: http://svn.automattic.com/wordpress/trunk@11205 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6c2ffddf31
commit
0d4c0a54da
|
@ -27,7 +27,7 @@ echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>';
|
||||||
<atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
|
<atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
|
||||||
<link><?php (is_single()) ? the_permalink_rss() : bloginfo_rss("url") ?></link>
|
<link><?php (is_single()) ? the_permalink_rss() : bloginfo_rss("url") ?></link>
|
||||||
<description><?php bloginfo_rss("description") ?></description>
|
<description><?php bloginfo_rss("description") ?></description>
|
||||||
<pubDate><?php echo gmdate('r'); ?></pubDate>
|
<lastBuildDate><?php echo mysql2date('r', get_lastcommentmodified('GMT')); ?></lastBuildDate>
|
||||||
<?php the_generator( 'rss2' ); ?>
|
<?php the_generator( 'rss2' ); ?>
|
||||||
<sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
|
<sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
|
||||||
<sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
|
<sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
|
||||||
|
|
Loading…
Reference in New Issue