diff options
Diffstat (limited to 'modules/forum.module')
-rw-r--r-- | modules/forum.module | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/forum.module b/modules/forum.module index ab19b4f3b..3ebb8f34b 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -26,11 +26,6 @@ function forum_help($section) { case 'node/add#forum': return t('A forum is a threaded discussion, enabling users to communicate about a particular topic.'); } - - // The 'add forum topic' form takes a variable argument: - if (substr($section, 0, 14) == 'node/add/forum'){ - return variable_get('forum_help', ''); - } } /** @@ -80,7 +75,6 @@ function forum_settings() { $group .= _taxonomy_term_select(t('Containers'), 'forum_containers', variable_get('forum_containers', array()), variable_get('forum_nav_vocabulary', ''), t('You can choose forums which will not have topics, but will be just containers for other forums. This lets you both group and nest forums.'), 1, '<'. t('none') .'>'); $output = form_group(t('Forum structure settings'), $group); - $group = form_textarea(t('Explanation or submission guidelines'), 'forum_help', variable_get('forum_help', ''), 70, 5, t('This text will be displayed at the top of the forum submission form. It is useful for helping or instructing your users.')); $group .= form_textfield(t('Forum icon path'), 'forum_icon_path', variable_get('forum_icon_path', ''), 30, 255, t('The path to the forum icons. Leave blank to disable icons. Don\'t add a trailing slash. Default icons are available in the "misc" directory.')); $group .= form_select(t('Hot topic threshold'), 'forum_hot_topic', variable_get('forum_hot_topic', 15), drupal_map_assoc(array(5, 10, 15, 20, 25, 30, 35, 40, 50, 60, 80, 100, 10000)), t('The number of posts a topic must have to be considered <strong>hot</strong>.')); $group .= form_select(t('Topics per page'), 'forum_per_page', variable_get('forum_per_page', 25), drupal_map_assoc(array(10, 25, 50, 75, 100)), t('The default number of topics displayed per page; links to browse older messages are automatically being displayed.')); |