summaryrefslogtreecommitdiff
path: root/modules/blog/blog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-05-02 15:11:05 +0000
committerDries Buytaert <dries@buytaert.net>2008-05-02 15:11:05 +0000
commitd1bc88924267f992b539b635a8de296e96c56ae3 (patch)
treefb74d421f9af67271938fcdcb8380e1b057f63fe /modules/blog/blog.module
parent4bc5d8d244bf152629e5a6738ddab2dd0d225896 (diff)
downloadbrdo-d1bc88924267f992b539b635a8de296e96c56ae3.tar.gz
brdo-d1bc88924267f992b539b635a8de296e96c56ae3.tar.bz2
- Patch #227830 by JohnAlbin: link attributes added to l() incorrectly.
Diffstat (limited to 'modules/blog/blog.module')
-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 884b3745b..a2a207b76 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -49,7 +49,7 @@ function blog_user($type, &$edit, &$user) {
$user->content['summary']['blog'] = array(
'#type' => 'user_profile_item',
'#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('attributes' => array('title' => t("Read @username's latest blog entries.", array('@username' => $user->name))))),
'#attributes' => array('class' => 'blog'),
);
}