From 4072ea46521512da7ff9f57a21cbeb4c4f7c2cfa Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 17 Mar 2009 12:41:54 +0000 Subject: - Patch #394374 by cwgordon7, wretched sinner, et al: improved language of comment status. Usability improvement based on testing in Baltimore. --- modules/forum/forum.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/forum/forum.module') diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 2b0c23550..b7c678c80 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -17,7 +17,7 @@ function forum_help($path, $arg) { $output .= '

' . t('When administering a forum, note that:') . '

'; $output .= ''; $output .= '

' . t('For more information, see the online handbook entry for Forum module.', array('@forum' => 'http://drupal.org/handbook/modules/forum/')) . '

'; return $output; @@ -933,7 +933,7 @@ function template_preprocess_forum_icon(&$variables) { $variables['icon'] = $variables['new_posts'] ? 'new' : 'default'; } - if ($variables['comment_mode'] == COMMENT_NODE_READ_ONLY || $variables['comment_mode'] == COMMENT_NODE_DISABLED) { + if ($variables['comment_mode'] == COMMENT_NODE_CLOSED || $variables['comment_mode'] == COMMENT_NODE_HIDDEN) { $variables['icon'] = 'closed'; } -- cgit v1.2.3