Changeset 38925 for trunk/src/wp-includes/feed-rss2-comments.php
- Timestamp:
- 10/25/2016 08:47:06 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/feed-rss2-comments.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-rss2-comments.php
r35294 r38925 44 44 <link><?php (is_single()) ? the_permalink_rss() : bloginfo_rss("url") ?></link> 45 45 <description><?php bloginfo_rss("description") ?></description> 46 <lastBuildDate><?php echo mysql2date('r', get_lastcommentmodified('GMT')); ?></lastBuildDate> 46 <lastBuildDate><?php 47 $date = get_lastcommentmodified( 'GMT' ); 48 echo $date ? mysql2date( 'r', $date ) : date( 'r' ); 49 ?></lastBuildDate> 47 50 <sy:updatePeriod><?php 48 51 /** This filter is documented in wp-includes/feed-rss2.php */
Note: See TracChangeset
for help on using the changeset viewer.