The link to original post that is placed in the "description" tag of each item is a relative URL.
The WC recommends to use only absolute URLs.
So, when we check the feed with the W3C feed validator (http://validator.w3.org/feed/) the feed is valid, but we get the following recommendation :
This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

* line XX, column 0: description should not contain relative URL references: /relative/node/url (10 occurrences) [help]

This is easy to fix by using the "abolute" option of the url function :
In the file commentrss.pages.inc, line 206, replace
$content = '

'. t('In reply to @title', array('@url' => url('node/'. $comment->nid), '@title' => $comment->title)) .":

\n\n";
with
$content = '

'. t('In reply to @title', array('@url' => url('node/'. $comment->nid, array('absolute' => true)), '@title' => $comment->title)) .":

\n\n";

CommentFileSizeAuthor
#2 513492-D6-2.patch970 bytesDave Reid
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Dave Reid’s picture

Assigned: Unassigned » Dave Reid
Status: Patch (to be ported) » Active

Will get a patch rolled shortly. Marking as active since there is not any actual patch here.

Dave Reid’s picture

Version: master » 6.x-2.x-dev
Status: Active » Needs review
FileSize
970 bytes

Patch attached for review.

Dave Reid’s picture

Status: Needs review » Fixed

Committed to 6.x-2.x and 5.x-2.x. Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

GK043’s picture

Hi, I'm having the same problem, but I can't seem to find the commentrss.pages.inc file. Can you tell me where to locate it? I just updated to Drupal 6.15.