summaryrefslogtreecommitdiff
path: root/modules/node/node.tokens.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/node/node.tokens.inc')
-rw-r--r--modules/node/node.tokens.inc8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/node/node.tokens.inc b/modules/node/node.tokens.inc
index c28e5347e..be064ab29 100644
--- a/modules/node/node.tokens.inc
+++ b/modules/node/node.tokens.inc
@@ -31,10 +31,6 @@ function node_token_info() {
'name' => t("Translation set ID"),
'description' => t("The unique ID of the original-language version of this node, if one exists."),
);
- $node['uid'] = array(
- 'name' => t("User ID"),
- 'description' => t("The unique ID of the user who posted the node."),
- );
$node['type'] = array(
'name' => t("Content type"),
'description' => t("The type of the node."),
@@ -125,10 +121,6 @@ function node_tokens($type, $tokens, array $data = array(), array $options = arr
$replacements[$original] = $node->tnid;
break;
- case 'uid':
- $replacements[$original] = $node->uid;
- break;
-
case 'type':
$replacements[$original] = $sanitize ? check_plain($node->type) : $node->type;
break;