summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 07:36:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 07:36:53 +0000
commit85c680a1a0e4b0f48526a064eae94e4b77e0d303 (patch)
treeb14af72b13d663363ddd1606d4bd66fa8eba63f0 /modules/blog
parent2d632d1a187e687eed1e3a6e732aeb97f3ceebdb (diff)
downloadbrdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.gz
brdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.bz2
#588148 by JohnAlbin, sun, and effulgentsia: Make theme_links() actually themable.
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 60b6c116e..95cedfcb1 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -86,7 +86,7 @@ function blog_node_view($node, $view_mode = 'full') {
'attributes' => array('title' => t("Read !username's latest blog entries.", array('!username' => format_username($node)))),
);
$node->content['links']['blog'] = array(
- '#theme' => 'links',
+ '#theme' => 'links__blog_node',
'#links' => $links,
'#attributes' => array('class' => array('links', 'inline')),
);