summaryrefslogtreecommitdiff
path: root/modules/node
diff options
context:
space:
mode:
Diffstat (limited to 'modules/node')
-rw-r--r--modules/node/node.module21
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 725891d9f..b66b423f0 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1594,27 +1594,6 @@ function theme_node_search_admin($form) {
return $output;
}
-/**
- * Implement hook_link().
- */
-function node_link($type, $node, $build_mode) {
- $links = array();
-
- if ($type == 'node') {
- if ($build_mode == 'teaser') {
- $links['node_read_more'] = array(
- 'title' => t('Read more'),
- 'href' => "node/$node->nid",
- // The title attribute gets escaped when the links are processed, so
- // there is no need to escape here.
- 'attributes' => array('title' => t('Read the rest of !title.', array('!title' => $node->title)))
- );
- }
- }
-
- return $links;
-}
-
function _node_revision_access($node, $op = 'view') {
static $access = array();
if (!isset($access[$node->vid])) {