From f2f3416549391ce0102c193abcea3fdd5d1d98ef Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 27 Aug 2006 12:43:18 +0000 Subject: - Patch #80934 by timnc: more t() fixes. --- modules/blog/blog.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/blog') diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 5ade1fcc6..6b0a60026 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -49,7 +49,7 @@ function blog_access($op, $node) { function blog_user($type, &$edit, &$user) { if ($type == 'view' && user_access('edit own blog', $user)) { $items[] = array('title' => t('Blog'), - 'value' => l(t('view recent blog entries'), "blog/$user->uid", array('title' => t("Read %username's latest blog entries.", array('%username' => $user->name)))), + 'value' => l(t('view recent blog entries'), "blog/$user->uid", array('title' => t("Read @username's latest blog entries.", array('@username' => $user->name)))), 'class' => 'blog', ); return array(t('History') => $items); @@ -249,7 +249,7 @@ function blog_link($type, $node = NULL, $teaser = FALSE) { $links['blog_usernames_blog'] = array( 'title' => t("@username's blog", array('@username' => $node->name)), 'href' => "blog/$node->uid", - 'attributes' => array('title' => t("Read %username's latest blog entries.", array('%username' => $node->name))) + 'attributes' => array('title' => t("Read @username's latest blog entries.", array('@username' => $node->name))) ); } } -- cgit v1.2.3