diff --git a/advanced_forum.module b/advanced_forum.module index 02534c9..41c6bb6 100644 --- a/advanced_forum.module +++ b/advanced_forum.module @@ -1160,6 +1160,7 @@ function advanced_forum_node_type_create_list($tid) { */ function advanced_forum_forum_tools($tid = 0) { global $user; + $options = array(); ctools_include('jump-menu'); if ($tid > 0) { $select[url("forum/active", array('query' => array('forum[]' => $tid)))] = t("View active posts in this forum"); @@ -1192,6 +1193,8 @@ function advanced_forum_forum_tools($tid = 0) { } $options['choose'] = t("- Forum Tools -"); + $options['title'] = t('Forum Tools'); + $options['title_display'] = 'invisible'; // Create and return the jump menu. $form = drupal_get_form('ctools_jump_menu', $select, $options);