Changeset 10385 for trunk/wp-includes/feed-atom-comments.php
- Timestamp:
- 01/20/2009 08:55:03 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/feed-atom-comments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed-atom-comments.php
r10377 r10385 65 65 </author> 66 66 67 <id><?php comment_ link(); ?></id>67 <id><?php comment_guid(); ?></id> 68 68 <updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_comment_time('Y-m-d H:i:s', true), false); ?></updated> 69 69 <published><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_comment_time('Y-m-d H:i:s', true), false); ?></published> … … 80 80 // The rel attribute below and the id tag above should be GUIDs, but WP doesn't create them for comments (unlike posts). Either way, its more important that they both use the same system 81 81 ?> 82 <thr:in-reply-to ref="<?php echo get_comment_link($parent_comment) ?>" href="<?php echo get_comment_link($parent_comment) ?>" type="<?php bloginfo_rss('html_type'); ?>" />82 <thr:in-reply-to ref="<?php comment_guid($parent_comment) ?>" href="<?php echo get_comment_link($parent_comment) ?>" type="<?php bloginfo_rss('html_type'); ?>" /> 83 83 <?php endif; 84 84 do_action('comment_atom_entry', $comment->comment_ID, $comment_post->ID);
Note: See TracChangeset
for help on using the changeset viewer.