### Eclipse Workspace Patch 1.0
#P token
Index: token_cck.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/token_cck.inc,v
retrieving revision 1.1.2.10
diff -u -r1.1.2.10 token_cck.inc
--- token_cck.inc	23 Feb 2008 12:12:39 -0000	1.1.2.10
+++ token_cck.inc	21 Apr 2008 18:26:45 -0000
@@ -60,6 +60,7 @@
       $tokens['node reference']['nid']   = t("Referenced node ID.");
       $tokens['node reference']['title'] = t("Referenced node title.");
       $tokens['node reference']['link']  = t("Formatted html link to the node.");
+      $tokens['node reference']['raw'] = t("Raw node title.");
 
       return $tokens;
     }
@@ -69,9 +70,11 @@
     if ($type == 'field') {
       $item = $object[0];
 
+      $node = node_load(array('nid' => $item['nid']));
       $tokens['nid']   = $item['nid'];
       $tokens['title'] = strip_tags($item['view']);
       $tokens['link']  = $item['view'];
+      $tokens['raw'] = strip_tags($node->title);
 
       return $tokens;
     }