Index: token_comment.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/Attic/token_comment.inc,v
retrieving revision 1.3.4.8
diff -u -p -r1.3.4.8 token_comment.inc
--- token_comment.inc	5 Jun 2010 16:45:58 -0000	1.3.4.8
+++ token_comment.inc	5 Jul 2010 17:22:22 -0000
@@ -53,6 +53,9 @@ function comment_token_values($type, $ob
       $values['comment-body-format']     = $comment->format;
 
       $values += token_get_date_token_values($comment->timestamp, 'comment-');
+
+      $values['comment-node-title-raw']  = db_result(db_query("SELECT title FROM {node} WHERE nid = %d", $comment->nid));
+      $values['comment-node-title']      = check_plain($values['comment-node-title-raw']);
       break;
   }
 
@@ -81,6 +84,9 @@ function comment_token_list($type = 'all
 
     $tokens['comment'] += token_get_date_token_info(t('Comment creation'), 'comment-');
 
+    $tokens['comment']['comment-node-title']      = t('The title of the node the comment was posted to.');
+    $tokens['comment']['comment-node-title-raw']  = t('The title of the node the comment was posted to.');
+
     return $tokens;
   }
 }
Index: token.test
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/token.test,v
retrieving revision 1.1.2.11
diff -u -p -r1.1.2.11 token.test
--- token.test	21 Jun 2010 23:24:27 -0000	1.1.2.11
+++ token.test	5 Jul 2010 17:22:22 -0000
@@ -187,6 +187,8 @@ class TokenCommentTestCase extends Token
     $tokens = array(
       'comment-cid' => $comment->cid,
       'comment-nid' => $this->node->nid,
+      'comment-node-title' => check_plain($this->node->title),
+      'comment-node-title-raw' => $this->node->title,
       'comment-yyyy' => '1984',
       'comment-yy' => '84',
       'comment-month' => 'July',
