diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-25 20:16:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-25 20:16:28 +0000 |
commit | 0e19200443c4ab1c4db74cfc50bad434dce36a3e (patch) | |
tree | 331d95515612c30840564eba72392efcf9265136 /modules/blog.module | |
parent | ad2d4d849699afb5eba621ffe88c3b08273daad2 (diff) | |
download | brdo-0e19200443c4ab1c4db74cfc50bad434dce36a3e.tar.gz brdo-0e19200443c4ab1c4db74cfc50bad434dce36a3e.tar.bz2 |
- Added missing title description. Patch by Stefan.
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 cc5c7aca7..b52131422 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -63,7 +63,7 @@ function blog_user($type, &$edit, &$user) { switch ($type) { case "view_public": case "view_private": - return form_item(t("Blog"), l(t("view recent blog entries"), "blog/$user->uid")); + return form_item(t("Blog"), l(t("view recent blog entries"), "blog/$user->uid", array("title" => t("Read %username's latest blog entries.", array("%username" => $user->name))))); } } |