summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/node/node.module4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index bcd5b3e40..6bf314e06 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1246,7 +1246,9 @@ function node_link($type, $node = NULL, $teaser = FALSE) {
$links['node_read_more'] = array(
'title' => t('Read more'),
'href' => "node/$node->nid",
- 'attributes' => array('title' => t('Read the rest of this posting.'))
+ // 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)))
);
}
}