diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-20 21:12:17 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-20 21:12:17 +0000 |
commit | 34650f8f113df7c31eaa80e937586aa196902d4f (patch) | |
tree | 1d52ad0812b99c6fddd831021cada5f14ecffe83 /modules/blog | |
parent | 33604ae034e6581d5c2d28930fd97a441717f0e1 (diff) | |
download | brdo-34650f8f113df7c31eaa80e937586aa196902d4f.tar.gz brdo-34650f8f113df7c31eaa80e937586aa196902d4f.tar.bz2 |
- tweaking the links. Too many of them.
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 69c775720..b41323538 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -303,10 +303,11 @@ function blog_link($type, $node = 0, $main) { } if ($type == "node" && $node->type == "blog") { + global $mod, $op, $id; if (blog_access("update", $node)) { $links[] = lm(t("edit this blog"), array("mod" => "node", "op" => "edit", "id" => $node->nid), "", array("title" => t("Edit this blog entry."))); } - else { + elseif ($mod == "blog" && $op != "view" && !$id) { $links[] = lm(t("%u's blog", array("%u" => $node->name)), array("mod" => "blog", "op" => "view", "id" => $node->uid), "", array("title" => t("Read %u's latest blog entries.", array("%u" => $node->name)))); } } |