diff --git a/core/modules/forum/forum.module b/core/modules/forum/forum.module index 551b92b..8ec0067 100644 --- a/core/modules/forum/forum.module +++ b/core/modules/forum/forum.module @@ -46,19 +46,8 @@ function forum_help($path, $arg) { return $output; case 'admin/structure/forum': $output = '

' . t('Forums contain forum topics. Use containers to group related forums.') . '

'; - $more_help_link = array( - '#type' => 'link', - '#href' => 'admin/help/forum', - '#title' => t('More help'), + $output .= ''; ); - $container = array( - '#theme' => 'container', - '#children' => drupal_render($more_help_link), - '#attributes' => array( - 'class' => array('more-help-link'), - ), - ); - $output .= drupal_render($container); return $output; case 'admin/structure/forum/add/container': return '

' . t('Use containers to group related forums.') . '

';