diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-30 05:58:46 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-30 05:58:46 +0000 |
commit | 63136b81e2c73a8ea7011b7c1b9f9df3a9ba7ad6 (patch) | |
tree | bb94d61d711730f2de65018b370f3783babc1dcb /modules/comment | |
parent | cc4ce5053b797a0d5d9895de4e812e8c027f4e60 (diff) | |
download | brdo-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/comment')
-rw-r--r-- | modules/comment/comment.module | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 4a0893f5c..a8b8a662f 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -688,11 +688,7 @@ function comment_node_view($node, $view_mode) { $links['comment_forbidden']['html'] = TRUE; } - $node->content['links']['comment'] = array( - '#theme' => 'links__comment_node', - '#links' => $links, - '#attributes' => array('class' => array('links', 'inline')), - ); + $node->content['links']['#links'] = array_merge($node->content['links']['#links'], $links); // Only append comments when we are building a node on its own node detail // page. We compare $node and $page_node to ensure that comments are not |