diff --git a/pift.admin.inc b/pift.admin.inc
index ab531bd..973f992 100644
--- a/pift.admin.inc
+++ b/pift.admin.inc
@@ -141,6 +141,12 @@ function pift_admin_settings_form($form, &$form_state) {
     '#collapsed' => TRUE,
   );
   $project = node_load(PIFT_PID);
+  // TODO: Change referenece from title to machine name, and fix
+  // query in pift_admin_settings_form_submit.
+  // For the D7 port, we are simply removing the ability to set the core
+  // project via this form, and hardcode the drupal project ID when
+  // defining the constant.
+  /*
   $form['advanced']['pift_pid'] = array(
     '#type' => 'textfield',
     '#title' => t('Core'),
@@ -149,6 +155,7 @@ function pift_admin_settings_form($form, &$form_state) {
     '#default_value' => ($project ? $project->title : ''),
     '#required' => TRUE,
   );
+  */
   $form['advanced']['pift_retest'] = array(
     '#type' => 'select',
     '#title' => t('Re-test interval'),
@@ -200,6 +207,10 @@ function pift_admin_settings_form_validate($form, &$form_state) {
  * Query pid using project title.
  */
 function pift_admin_settings_form_submit($form, &$form_state) {
+  // TODO: Any node type can be a project.  Need a new way to find the pid.
+  // For the D7 port, we are simply removing the ability to set the core
+  // project via this form, and hardcode the drupal project ID when
+  // defining the constant.  Thus this function is not called.
   $form_state['values']['pift_pid'] = db_query("SELECT nid
               FROM {node}
               WHERE title = :title
