diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-23 11:06:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-23 11:06:53 +0000 |
commit | 74679f5553d3a73487dd52245780f272cedfc96b (patch) | |
tree | 09a4b9e764660991c2d7d03692978a994ae7b0c4 /modules | |
parent | 8ee2abd5b7505837f839b0bdbf4d1ae8db1bfa8a (diff) | |
download | brdo-74679f5553d3a73487dd52245780f272cedfc96b.tar.gz brdo-74679f5553d3a73487dd52245780f272cedfc96b.tar.bz2 |
- Patch #99287 by webchick: missed some title capitalizations.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/blog/blog.module | 2 | ||||
-rw-r--r-- | modules/user/user.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 7d9c80715..d876502a7 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -49,7 +49,7 @@ function blog_access($op, $node) { function blog_user($type, &$edit, &$user) { if ($type == 'view' && user_access('edit own blog', $user)) { $items[] = array('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('title' => t("Read @username's latest blog entries.", array('@username' => $user->name)))), 'class' => 'blog', ); return array(t('History') => $items); diff --git a/modules/user/user.module b/modules/user/user.module index ad2f5bae9..cbb24b078 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -465,7 +465,7 @@ function user_user($type, &$edit, &$user, $category = NULL) { } if ($type == 'categories') { - return array(array('name' => 'account', 'title' => t('account settings'), 'weight' => 1)); + return array(array('name' => 'account', 'title' => t('Account settings'), 'weight' => 1)); } } |