Index: notifications_content/notifications_content.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/notifications/notifications_content/notifications_content.module,v retrieving revision 1.4.2.9.2.36.2.19 diff -u -p -r1.4.2.9.2.36.2.19 notifications_content.module --- notifications_content/notifications_content.module 21 May 2010 11:49:18 -0000 1.4.2.9.2.36.2.19 +++ notifications_content/notifications_content.module 12 Aug 2010 22:20:11 -0000 @@ -847,7 +847,6 @@ function notifications_content_token_lis if ($type == 'node' || $type == 'all') { $tokens['node']['node-teaser'] = t('The node teaser.'); $tokens['node']['node-body'] = t('The node body.'); - $tokens['node']['node-url'] = t('The node view url for read more links.'); $tokens['node']['node-teaser-raw'] = t('Unfiltered node teaser. WARNING - raw user input.'); $tokens['node']['node-body-raw'] = t('Unfiltered node body. WARNING - raw user input.'); } @@ -867,7 +866,6 @@ function notifications_content_token_val if ($node = $object) { $values['node-teaser'] = !empty($node->teaser) ? check_markup($node->teaser, $node->format, FALSE) : ''; $values['node-body'] = !empty($node->body) ? check_markup($node->body, $node->format, FALSE) : ''; - $values['node-url'] = url('node/'. $node->nid, array('absolute' => TRUE)); $values['node-teaser-raw'] = !empty($node->teaser) ? $node->teaser : ''; $values['node-body-raw'] = !empty($node->body) ? $node->body : ''; return $values;