Index: field_select.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/flexinode/field_select.inc,v
retrieving revision 1.11
diff -u -r1.11 field_select.inc
--- field_select.inc	10 Nov 2005 09:35:16 -0000	1.11
+++ field_select.inc	21 Feb 2006 13:22:05 -0000
@@ -45,10 +45,11 @@
 }
 
 function flexinode_field_select_config($field, $edit) {
+  $field_options = (array) $field->options;
   return array('options' => array(
     '#type' => 'textarea',
-    '#default_value' => is_array($edit['options']) ? implode('|', $edit['options']) : '',
-    '#description' => t('Please enter a pipe delimited list of options with no cairrage returns. For example: "Red|Blue|Green" or "Small|Medium|Large"'),
+    '#default_value' => is_array($edit['options']) ? implode('|', $edit['options']) : implode('|', $field_options),
+    '#description' => t('Please enter a pipe delimited list of options with no carriage returns. For example: "Red|Blue|Green" or "Small|Medium|Large"'),
     ));
 }
