Index: server/pift_server.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_test/server/Attic/pift_server.module,v
retrieving revision 1.53.2.1
diff -u -F^f -u -F^f -r1.53.2.1 pift_server.module
--- server/pift_server.module	21 Mar 2009 18:57:01 -0000	1.53.2.1
+++ server/pift_server.module	6 Aug 2009 22:47:12 -0000
@@ -67,7 +67,7 @@ function pift_server_form_alter(&$form, 
     case 'project_issue_node_form':
       // Add in custom description for file testing, test here for the existence of a project,
       // so the description doesn't get added to page 1 of the new issue form.
-      if (isset($form['project_info']['pid']['#value']) && isset($form['attachments']['wrapper']['new']['upload']) && pift_server_active_project($form['project_info']['pid']['#value'])) {
+      if (isset($form['project_issue']['pid']['#value']) && isset($form['attachments']['wrapper']['new']['upload']) && pift_server_active_project($form['project_issue']['pid']['#value'])) {
         $description = filter_xss_admin(variable_get('pift_server_file_description', ''));
         $form['attachments']['wrapper']['new']['upload']['#description'] .= $description;
       }
@@ -1230,9 +1230,9 @@ function pift_server_check_followup_meta
 
   $projects = pift_server_project_list();
   $status_list = pift_server_status_list();
-  $pid = $comment['project_info']['pid'];
+  $pid = $comment['project_issue']['pid'];
   $sid = $comment['sid'];
-  $rid = $comment['project_info']['rid'];
+  $rid = $comment['project_issue']['rid'];
   $nid = $comment['nid'];
   $release_tag_regex = variable_get('pift_server_release_tag_regex', '');
 
