Ticket #8626: 8626.diff
| File 8626.diff, 1.6 KB (added by neoxx, 3 years ago) |
|---|
-
C:\Users\neoxx\
old new 11 11 <feed 12 12 xmlns="http://www.w3.org/2005/Atom" 13 13 xml:lang="<?php echo get_option('rss_language'); ?>" 14 xmlns:thr="http://purl.org/syndication/thread/1.0" 14 15 <?php do_action('atom_ns'); ?> 15 16 > 16 17 <title type="text"><?php … … 73 74 <?php endif; // post pass 74 75 // Return comment threading information (http://www.ietf.org/rfc/rfc4685.txt) 75 76 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'); ?>" />77 <thr:in-reply-to ref="<?php the_guid() ?>" href="<?php the_permalink_rss() ?>" type="<?php bloginfo_rss('html_type'); ?>" /> 77 78 <?php else : // This comment is in reply to another comment 78 79 $parent_comment = get_comment($comment->comment_parent); 79 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 80 81 ?> 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'); ?>" />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 83 <?php endif; 83 84 do_action('comment_atom_entry', $comment->comment_ID, $comment_post->ID); 84 85 ?>
