=== modified file 'sites/all/modules/import_html/import_html_ui.inc'
--- sites/all/modules/import_html/import_html_ui.inc	2010-02-10 00:09:24 +0000
+++ sites/all/modules/import_html/import_html_ui.inc	2010-02-10 04:16:29 +0000
@@ -162,19 +162,16 @@
   $form = array();
   if ($profile_id != 'new') {
     $form['summary'] = array('#value' => import_html_profile_summary($profile));
-  }
-  if ($profile_id == 'new') {
     $form['profile_id'] = array(
-      '#title' => t("Profile ID"),
-      '#type' => 'textfield',
-      '#required' => TRUE,
-      '#default_value' => $profile_id,
+      '#type' => 'value',
+      '#value' => $profile_id,
     );
   } 
   else {
     $form['profile_id'] = array(
-      '#type' => 'value',
-      '#value' => $profile_id,
+      '#title' => t("Profile ID"),
+      '#type' => 'textfield',
+      '#required' => TRUE
     );
   }
 

