summaryrefslogtreecommitdiff
path: root/modules/node
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-30 05:58:46 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-30 05:58:46 +0000
commit63136b81e2c73a8ea7011b7c1b9f9df3a9ba7ad6 (patch)
treebb94d61d711730f2de65018b370f3783babc1dcb /modules/node
parentcc4ce5053b797a0d5d9895de4e812e8c027f4e60 (diff)
downloadbrdo-63136b81e2c73a8ea7011b7c1b9f9df3a9ba7ad6.tar.gz
brdo-63136b81e2c73a8ea7011b7c1b9f9df3a9ba7ad6.tar.bz2
#878092 by joachim, Jacine, sun: Fixed Each module is outputting its own ul.links.inline in node links.
Diffstat (limited to 'modules/node')
-rw-r--r--modules/node/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index a66e55f68..fb8352de3 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1286,7 +1286,7 @@ function node_build_content($node, $view_mode = 'full') {
'attributes' => array('rel' => 'tag', 'title' => strip_tags($node->title))
);
}
- $node->content['links']['node'] = array(
+ $node->content['links'] = array(
'#theme' => 'links__node',
'#links' => $links,
'#attributes' => array('class' => array('links', 'inline')),