diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-04 08:59:05 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-04 08:59:05 +0000 |
commit | 59aa2ae8e8a7e29e0029941b28bce5b7ba31ae94 (patch) | |
tree | 53b2f31898c20a168d742111ae210aa19393dbbd /modules/node | |
parent | c21db64ae8f965f28342b6cf528d180a057c6412 (diff) | |
download | brdo-59aa2ae8e8a7e29e0029941b28bce5b7ba31ae94.tar.gz brdo-59aa2ae8e8a7e29e0029941b28bce5b7ba31ae94.tar.bz2 |
#71925 by Steven, remove # prefix from link array keys.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 573c1c31b..129659abd 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -816,9 +816,9 @@ function node_link($type, $node = 0, $main = 0) { if ($main == 1 && $node->teaser && $node->readmore) { $links['node_read_more'] = array( - '#title' => t('read more'), - '#href' => "node/$node->nid", - '#attributes' => array('title' => t('Read the rest of this posting.')) + 'title' => t('read more'), + 'href' => "node/$node->nid", + 'attributes' => array('title' => t('Read the rest of this posting.')) ); } } |