diff options
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog.module b/modules/blog.module index 4ac9240f7..a79a02fb0 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -43,7 +43,7 @@ function blog_access($op, $node) { function blog_user($type, &$edit, &$user) { if ($type == 'view' && user_access('edit own blog', $user)) { $form['blog'] = array( - type => 'item', title => t('Blog'), + type => '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)))) ); return array(t('History') => $form); |