Index: pift.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_test/pift.admin.inc,v
retrieving revision 1.15
diff -u -F '^f' -u -F '^f' -r1.15 pift.admin.inc
--- pift.admin.inc	11 Jan 2010 19:52:39 -0000	1.15
+++ pift.admin.inc	18 Apr 2010 00:10:31 -0000
@@ -68,7 +68,7 @@ function pift_admin_settings_form() {
     '#title' => t('Followup issue status - fail'),
     '#description' => t('The status to set an issue to when a test result meets all of the following criteria.' . theme('item_list', $criteria)),
     '#default_value' => PIFT_FOLLOWUP_FAIL,
-    '#options' => project_issue_state(),
+    '#options' => project_issue_status(),
     '#required' => TRUE,
   );
   $form['interface']['pift_followup_retest'] = array(
@@ -76,7 +76,7 @@ function pift_admin_settings_form() {
     '#title' => t('Followup issue status - retest'),
     '#description' => t('The status to set an issue to when someone requests a re-test and the issue currently does not fit the test criteria.'),
     '#default_value' => PIFT_FOLLOWUP_RETEST,
-    '#options' => project_issue_state(),
+    '#options' => project_issue_status(),
     '#required' => TRUE,
   );
 
@@ -99,7 +99,7 @@ function pift_admin_settings_form() {
     '#title' => t('Issue statuses'),
     '#description' => t('List of issue statuses that an issue must belong to one of in order to test files.'),
     '#default_value' => variable_get('pift_status', array()),
-    '#options' => project_issue_state(),
+    '#options' => project_issue_status(),
     '#required' => TRUE,
   );
   $form['criteria']['pift_core'] = array(
Index: pift.cron.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_test/pift.cron.inc,v
retrieving revision 1.54
diff -u -F '^f' -u -F '^f' -r1.54 pift.cron.inc
--- pift.cron.inc	28 Jan 2010 00:35:23 -0000	1.54
+++ pift.cron.inc	18 Apr 2010 00:10:31 -0000
@@ -456,7 +456,7 @@ function pift_cron_check_auto_followup(a
     // Test did not pass, make sure that test is for a file.
     $test = pift_test_get($result['test_id']);
     if ($test['fid']) {
-      // Get the current issue state and ensure that the test is the last one
+      // Get the current issue status and ensure that the test is the last one
       // for the particular issue. Cycle through clauses to remove the need for
       // an OR clause and thus improve performance.
       $results = array();
Index: pift.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_test/pift.module,v
retrieving revision 1.44
diff -u -F '^f' -u -F '^f' -r1.44 pift.module
--- pift.module	2 Mar 2010 20:37:36 -0000	1.44
+++ pift.module	18 Apr 2010 00:10:31 -0000
@@ -284,7 +284,7 @@ function pift_comment(&$comment, $op) {
           pift_test_add_files($files);
         }
 
-        // Add previously submitted files if issue state changes.
+        // Add previously submitted files if issue status changes.
         pift_test_add_previous_files($comment['nid']);
       }
       break;
