--- commentrss.module.orig	2007-07-15 22:19:11.000000000 -0600
+++ commentrss.module	2008-05-03 14:43:58.000000000 -0600
@@ -215,7 +215,7 @@ function commentrss_format_items($nidsel
   $items = '';
 
   // Build SQL query from the passed elements
-  $SQL = 'SELECT '. $nidselector .', c.cid, c.subject, c.comment, c.timestamp, c.uid, c.name, c.format FROM {node} n ' . $joins . ' INNER JOIN {comments} c ON c.nid = n.nid WHERE ' . $where . ' n.status = 1 AND c.status = %d ORDER BY c.timestamp DESC';
+  $SQL = 'SELECT '. $nidselector .', n.title, c.cid, c.subject, c.comment, c.timestamp, c.uid, c.name, c.format FROM {node} n ' . $joins . ' INNER JOIN {comments} c ON c.nid = n.nid WHERE ' . $where . ' n.status = 1 AND c.status = %d ORDER BY c.timestamp DESC';
 
   // Add passed query parameter; plus we are looking for published comments
   $params = isset($param) ? array($param) : array();
@@ -233,7 +233,7 @@ function commentrss_format_items($nidsel
     }
     $extra = array(array('key' => 'pubDate', 'value' => date('r', $comment->timestamp)), array('key' => 'dc:creator', 'value' => $comment->name), array('key' => 'guid', 'value' => 'comment ' . $comment->cid . ' at ' . $base_url, 'attributes' => array('isPermaLink' => 'false')));
     $link = url("node/{$comment->nid}", NULL, "comment-{$comment->cid}", TRUE);
-    $items .= format_rss_item($comment->subject, $link, check_markup($comment->comment, $comment->format, FALSE), $extra);
+    $items .= format_rss_item($comment->subject .' ['. $comment->title .']', $link, check_markup($comment->comment, $comment->format, FALSE), $extra);
   }
   return $items;
 }
