diff options
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 4 |
1 files changed, 2 insertions, 2 deletions
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))) ); } } |