diff options
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 54adb2883..ca19a446f 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -256,10 +256,6 @@ function blog_view(&$node, $teaser = FALSE, $page = FALSE) { function blog_link($type, $node = 0, $main) { $links = array(); - if ($type == 'page' && user_access('access content')) { - $links[] = l(t('blogs'), 'blog', array('title' => t('Read the latest blog entries.'))); - } - if ($type == 'node' && $node->type == 'blog') { if (arg(0) != 'blog' && arg(1) != $node->uid) { $links[] = l(t("%username's blog", array('%username' => $node->name)), "blog/$node->uid", array('title' => t("Read %username's latest blog entries.", array('%username' => $node->name)))); |