summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-08-20 07:07:17 +0000
committerDries Buytaert <dries@buytaert.net>2006-08-20 07:07:17 +0000
commit92a01e2057e491da6538be32ed2ada0ee64e34f0 (patch)
treefbc1b23bc79a756f4f97fd61826fd842e89ce6bc /modules/blog
parentcbf48c1d9be8dec41e9910fabe6fc18554dfaa86 (diff)
downloadbrdo-92a01e2057e491da6538be32ed2ada0ee64e34f0.tar.gz
brdo-92a01e2057e491da6538be32ed2ada0ee64e34f0.tar.bz2
- Patch #79476 by assimonds and webchick: fixed broken t()-iness.
CVS: ----------------------------------------------------------------------
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 1c9e0d3e0..b4892e738 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -255,7 +255,7 @@ function blog_link($type, $node = NULL, $teaser = FALSE) {
if ($type == 'node' && $node->type == 'blog') {
if (arg(0) != 'blog' || arg(1) != $node->uid) {
$links['blog_usernames_blog'] = array(
- 'title' => t("%username's blog", array('%username' => $node->name)),
+ '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)))
);