Changeset 38925 for trunk/src/wp-includes/feed-atom.php
- Timestamp:
- 10/25/2016 08:47:06 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/feed-atom.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-atom.php
r35506 r38925 31 31 <subtitle type="text"><?php bloginfo_rss("description") ?></subtitle> 32 32 33 <updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></updated> 33 <updated><?php 34 $date = get_lastpostmodified( 'GMT' ); 35 echo $date ? mysql2date( 'Y-m-d\TH:i:s\Z', $date ) : date( 'Y-m-d\TH:i:s\Z' ); 36 ?></updated> 34 37 35 38 <link rel="alternate" type="<?php bloginfo_rss('html_type'); ?>" href="<?php bloginfo_rss('url') ?>" />
Note: See TracChangeset
for help on using the changeset viewer.