]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/feed-atom.php
WordPress 4.7.1-scripts
[autoinstalls/wordpress.git] / wp-includes / feed-atom.php
index a4a62f74b94bf755f30be592caf114819ccf97dc..09cb7c016ec5ccacc4e3597e796faef2431fbc94 100644 (file)
@@ -30,7 +30,10 @@ do_action( 'rss_tag_pre', 'atom' );
        <title type="text"><?php wp_title_rss(); ?></title>
        <subtitle type="text"><?php bloginfo_rss("description") ?></subtitle>
 
-       <updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></updated>
+       <updated><?php
+               $date = get_lastpostmodified( 'GMT' );
+               echo $date ? mysql2date( 'Y-m-d\TH:i:s\Z', $date ) : date( 'Y-m-d\TH:i:s\Z' );
+       ?></updated>
 
        <link rel="alternate" type="<?php bloginfo_rss('html_type'); ?>" href="<?php bloginfo_rss('url') ?>" />
        <id><?php bloginfo('atom_url'); ?></id>