? project-support.patch
Index: project.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/project/project.inc,v
retrieving revision 1.103
diff -u -p -r1.103 project.inc
--- project.inc	15 Jan 2007 10:00:13 -0000	1.103
+++ project.inc	27 Jan 2007 02:03:16 -0000
@@ -308,15 +308,14 @@ function project_project_view($node, $te
       );
     }
 
-    // Support section
+    // Support section.
     $links = array();
-    if (module_exists('forum') && ($support_forum = variable_get('project_support_forum', ''))) {
-      $links[] = l(t('Support forum'), 'forum/' . $support_forum);
-    }
 
     if ($node->issues) {
+      $links[] = l(t('View support requests'), 'project/issues/'. $node->uri, null, 'categories=support', null);
       $links[] = l(t('View pending bug reports'), 'project/issues/'. $node->uri, null, 'categories=bug', null);
       $links[] = l(t('View pending feature requests'), 'project/issues/'. $node->uri, null, 'categories=feature', null);
+      $links[] = l(t('Request support'), 'node/add/project_issue/'. $node->uri .'/support');
       $links[] = l(t('Report new bug'), 'node/add/project_issue/'. $node->uri .'/bug');
       $links[] = l(t('Request new feature'), 'node/add/project_issue/'. $node->uri .'/feature');
     }
Index: project.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/project/project.module,v
retrieving revision 1.262
diff -u -p -r1.262 project.module
--- project.module	18 Jan 2007 23:30:10 -0000	1.262
+++ project.module	27 Jan 2007 02:03:16 -0000
@@ -1,6 +1,6 @@
 <?php
 // $Id: project.module,v 1.262 2007/01/18 23:30:10 dww Exp $
-// $Name:  $
+// $Name: HEAD $
 
 $path = drupal_get_path('module', 'project');
 if (file_exists("$path/project.inc")) {
@@ -118,9 +118,6 @@ function project_settings_form() {
     '#description' => t('The default maximum number of projects to list when browsing lists, e.g., by category.')
   );
 
-  if (module_exists('forum') && project_use_taxonomy()) {
-    $form['project_support_forum'] = taxonomy_form(_forum_get_vid(), variable_get('project_support_forum', ''), t('Select the support forum for projects'), 'project_support_forum');
-  }
   // Custom submit handler
   $form['#submit']['project_settings_form_extra_submit'] = array();
   // system_settings_form() doesn't add the default if #submit already exists.
