Index: commentrss.pages.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/commentrss/Attic/commentrss.pages.inc,v retrieving revision 1.1.2.1 diff -u -p -r1.1.2.1 commentrss.pages.inc --- commentrss.pages.inc 1 Oct 2008 14:09:17 -0000 1.1.2.1 +++ commentrss.pages.inc 16 Jul 2009 13:36:10 -0000 @@ -203,7 +203,7 @@ function commentrss_format_items($nidsel // Build up item content with node title if required. $content = ''; if ($include_node_title) { - $content = '

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

\n\n"; + $content = '

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

\n\n"; } $content .= check_markup($comment->comment, $comment->format, FALSE);