Changeset 10164
- Timestamp:
- 12/10/2008 05:51:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed-atom-comments.php
r10036 r10164 74 74 // Return comment threading information (http://www.ietf.org/rfc/rfc4685.txt) 75 75 if ( $comment->comment_parent == 0 ) : // This comment is top level ?> 76 <thr:in-reply-to re l="<?php the_guid() ?>" href="<?php the_permalink_rss() ?>" type="<?php bloginfo_rss('html_type'); ?>" />76 <thr:in-reply-to ref="<?php the_guid() ?>" href="<?php the_permalink_rss() ?>" type="<?php bloginfo_rss('html_type'); ?>" /> 77 77 <?php else : // This comment is in reply to another comment 78 78 $parent_comment = get_comment($comment->comment_parent); 79 79 // 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 80 80 ?> 81 <thr:in-reply-to re l="<?php echo get_comment_link($parent_comment) ?>" href="<?php echo get_comment_link($parent_comment) ?>" type="<?php bloginfo_rss('html_type'); ?>" />81 <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 82 <?php endif; 83 83 do_action('comment_atom_entry', $comment->comment_ID, $comment_post->ID);
Note: See TracChangeset
for help on using the changeset viewer.