diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-18 12:43:28 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-18 12:43:28 +0000 |
commit | 74da133ca14b3900d259c3fe2ec3dde17fb9e7df (patch) | |
tree | 9a21aadb1f4147f548dc4f8542af400452153ca6 /modules/blog | |
parent | 81938a3cdc7b9bd13d58e355c59d9835e830fea4 (diff) | |
download | brdo-74da133ca14b3900d259c3fe2ec3dde17fb9e7df.tar.gz brdo-74da133ca14b3900d259c3fe2ec3dde17fb9e7df.tar.bz2 |
blog: Remove unnecessary emphasis due to #76802
Diffstat (limited to 'modules/blog')
-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 d5b8ac0eb..1c9e0d3e0 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -142,7 +142,7 @@ function blog_page_user($uid) { $account = user_load(array((is_numeric($uid) ? 'uid' : 'name') => $uid, 'status' => 1)); if ($account->uid) { - drupal_set_title($title = t("%name's blog", array('%name' => $account->name))); + drupal_set_title($title = t("@name's blog", array('@name' => $account->name))); if (($account->uid == $user->uid) && user_access('edit own blog')) { $output = '<li>'. l(t('Post new blog entry.'), "node/add/blog") .'</li>'; @@ -239,7 +239,7 @@ function blog_view($node, $teaser = FALSE, $page = FALSE) { if ($page) { // Breadcrumb navigation $breadcrumb[] = array('path' => 'blog', 'title' => t('blogs')); - $breadcrumb[] = array('path' => 'blog/'. $node->uid, 'title' => t("%name's blog", array('%name' => $node->name))); + $breadcrumb[] = array('path' => 'blog/'. $node->uid, 'title' => t("@name's blog", array('@name' => $node->name))); $breadcrumb[] = array('path' => 'node/'. $node->nid); menu_set_location($breadcrumb); } |