diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-05 17:48:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-05 17:48:03 +0000 |
commit | 00758e24dc159d734669ad9d62c765424180a412 (patch) | |
tree | 8ba6de63d1651c17f429a4077f700f30ef0bb450 /modules/comment/comment.module | |
parent | 93c367bfa21fa16e83d579b1b25bad31b903415a (diff) | |
download | brdo-00758e24dc159d734669ad9d62c765424180a412.tar.gz brdo-00758e24dc159d734669ad9d62c765424180a412.tar.bz2 |
- Patch #92149 by Chris Kennedy: more sentence capitalization.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 41abf8595..43ee9db86 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1677,10 +1677,10 @@ function theme_comment_post_forbidden($nid) { } if (variable_get('user_register', 1)) { - return t('<a href="@login">login</a> or <a href="@register">register</a> to post comments', array('@login' => url('user/login', $destination), '@register' => url('user/register', $destination))); + return t('<a href="@login">Login</a> or <a href="@register">register</a> to post comments', array('@login' => url('user/login', $destination), '@register' => url('user/register', $destination))); } else { - return t('<a href="@login">login</a> to post comments', array('@login' => url('user/login', $destination))); + return t('<a href="@login">Login</a> to post comments', array('@login' => url('user/login', $destination))); } } } |