Index: contexts/node_add_form.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/contexts/node_add_form.inc,v
retrieving revision 1.1.2.5
diff -u -F^[^a-z]*function -r1.1.2.5 node_add_form.inc
--- contexts/node_add_form.inc	3 Jun 2008 13:18:07 -0000	1.1.2.5
+++ contexts/node_add_form.inc	16 Jul 2008 16:45:06 -0000
@@ -73,16 +73,16 @@ function panels_context_node_add_form_se
     $options[$type] = $info->name;
   }
 
-  $form['types'] = array(
+  $form['type'] = array(
     '#title' => t('Node type'),
     '#type' => 'select',
     '#options' => $options,
-    '#default_value' => $conf['types'],
+    '#default_value' => $conf['type'],
     '#description' => t('Select the node type for this form.'),
   );
 
   if ($external) {
-    $form['types']['#description'] .= ' ' . t('Select external to require this from an external source (such as a containing panel page).');
+    $form['type']['#description'] .= ' ' . t('Select external to require this from an external source (such as a containing panel page).');
   }
 
   return $form;
