diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-14 20:40:27 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-14 20:40:27 +0000 |
commit | e5fd6713078d2db7145aac80b4743048a2432fc8 (patch) | |
tree | fdb1e3fbd0e810e0393840b8743f344db3c62a5d /modules/blog | |
parent | b7326a33e94741b23b32a1b098979d81b18bd74e (diff) | |
download | brdo-e5fd6713078d2db7145aac80b4743048a2432fc8.tar.gz brdo-e5fd6713078d2db7145aac80b4743048a2432fc8.tar.bz2 |
- made a typo in one of the updated t()'s.
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index f2d59e67e..f0445c119 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -302,7 +302,7 @@ function blog_link($type, $node = 0, $main) { $links[] = "<a href=\"module.php?mod=node&op=edit&id=$node->nid\" title=\"". t("Edit this blog entry.") ."\">". t("edit this blog") ."</a>"; } else { - $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". strtr(t("Read %u's latest blog entries."), array("%u" => $node->name)) ."\">". strtr(t("%u's blog"), array("%u", $node->name)) ."</a>"; + $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". strtr(t("Read %u's latest blog entries."), array("%u" => $node->name)) ."\">". strtr(t("%u's blog"), array("%u" => $node->name)) ."</a>"; } } |