diff options
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 121fc25ed..c0ceee50d 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -99,8 +99,9 @@ function blog_node_view($node, $build_mode = 'full') { 'attributes' => array('title' => t("Read !username's latest blog entries.", array('!username' => $node->name))), ); $node->content['links']['blog'] = array( - '#type' => 'node_links', - '#value' => $links, + '#theme' => 'links', + '#links' => $links, + '#attributes' => array('class' => 'links inline'), ); } } |