diff --git a/acidfree.module b/acidfree.module
index 98ca1fd..0edc613 100644
--- a/acidfree.module
+++ b/acidfree.module
@@ -2024,20 +2024,20 @@ function acidfree_mass_import($form_state, $parent) {
     // kjh:
     $form['#id'] = 'node-form';
      
-    foreach ($types as $type) {
-        $node->type = $type;
-        $form['#node'] = $node;
-        $form['type'] = array('#value' => $type);
-        foreach(module_implements('form_alter') as $module) {
-            // Restrict certain modules from modifying the form.
-            // FIXME: Is this what we want? Should we be permitting **any** modules from
-            // modifying mass import?
-            if (in_array($module, array('acidfree', 'menu', 'comment', 'image', 'video', 'uploadfield', 'videpftp', 'upload'))) continue;
-            $function = "{$module}_form_alter";
-            $form_state = array();
-            $function($form, $form_state, $type.'_node_form');
-        }
-    }
+//    foreach ($types as $type) {
+//        $node->type = $type;
+//        $form['#node'] = $node;
+//        $form['type'] = array('#value' => $type);
+//        foreach(module_implements('form_alter') as $module) {
+//            // Restrict certain modules from modifying the form.
+//            // FIXME: Is this what we want? Should we be permitting **any** modules from
+//            // modifying mass import?
+//            if (in_array($module, array('acidfree', 'menu', 'comment', 'image', 'video', 'uploadfield', 'videpftp', 'upload'))) continue;
+//            $function = "{$module}_form_alter";
+//            $form_state = array();
+//            $function($form, $form_state, $type.'_node_form');
+//        }
+//    }
 
     $vid = acidfree_get_vocab_id();
     unset($form['taxonomy'][$vid]);
