Index: token_cck.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/token_cck.inc,v
retrieving revision 1.1.2.9
diff -u -r1.1.2.9 token_cck.inc
--- token_cck.inc	16 Oct 2007 14:37:59 -0000	1.1.2.9
+++ token_cck.inc	15 Nov 2007 16:24:32 -0000
@@ -68,9 +68,10 @@
   function nodereference_token_values($type, $object = NULL, $options = array()) {
     if ($type == 'field') {
       $item = $object[0];
-
+      
       $tokens['nid']   = $item['nid'];
-      $tokens['title'] = strip_tags($item['view']);
+      $node = node_load(array('nid' => $item['nid']));
+      $tokens['title'] = $node->title;
       $tokens['link']  = $item['view'];
 
       return $tokens;
