diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-02 02:41:28 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-02 02:41:28 +0000 |
commit | 2837657941ec65030558a5792a483c424c9e6638 (patch) | |
tree | cefc24fe0c958ea2f32ac210c3fc45ac92996a92 /modules/forum | |
parent | ff6f545b8fdb8c1fb01e2d8c2dbbd80f6c3f1d16 (diff) | |
download | brdo-2837657941ec65030558a5792a483c424c9e6638.tar.gz brdo-2837657941ec65030558a5792a483c424c9e6638.tar.bz2 |
#479216 by jhedstrom: Grammar fixes in forum.module.
Diffstat (limited to 'modules/forum')
-rw-r--r-- | modules/forum/forum.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 234c26b48..c34f666bf 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -753,11 +753,11 @@ function template_preprocess_forums(&$variables) { if (empty($forum_types)) { // The user is logged-in; but denied access to create any new forum content type. if ($user->uid) { - $forum_types['disallowed'] = array('title' => t('You are not allowed to post new content in forum.')); + $forum_types['disallowed'] = array('title' => t('You are not allowed to post new content in the forum.')); } // The user is not logged-in; and denied access to create any new forum content type. else { - $forum_types['login'] = array('title' => t('<a href="@login">Login</a> to post new content in forum.', array('@login' => url('user/login', array('query' => drupal_get_destination())))), 'html' => TRUE); + $forum_types['login'] = array('title' => t('<a href="@login">Login</a> to post new content in the forum.', array('@login' => url('user/login', array('query' => drupal_get_destination())))), 'html' => TRUE); } } $variables['links'] = $forum_types; |