I noticed when reading comment rss feeds from other blogs I had a tough time following since Wordpress doesn’t include the post title in the comment feed. I looked around and found the solution. All you need to do is change one line in the wp-commentsrss2.php file.
On line 52 change this:
with this
< ? php if ( (! is_single()) || (! is_page()) ) {
$title = get_the_title($comment->comment_post_ID);
$title = apply_filters('the_title', $title);
$title = apply_filters('the_title_rss', $title);
echo "$title --";
} ? >
Now all you (JB) need to do is change yours.
[link]
