diff options
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index d320aa005..2c093fc47 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -601,7 +601,7 @@ function comment_node_view($node, $view_mode) { } $node->content['links']['comment'] = array( - '#theme' => 'links', + '#theme' => 'links__comment_node', '#links' => $links, '#attributes' => array('class' => array('links', 'inline')), ); @@ -910,7 +910,7 @@ function comment_build_content($comment, $node, $view_mode = 'full') { if (empty($comment->in_preview)) { $comment->content['links']['comment'] = array( - '#theme' => 'links', + '#theme' => 'links__comment', '#links' => comment_links($comment, $node), '#attributes' => array('class' => array('links', 'inline')), ); |