Index: swfobject_api.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/swfobject_api/swfobject_api.module,v
retrieving revision 1.2.2.21
diff -u -r1.2.2.21 swfobject_api.module
--- swfobject_api.module	31 Jul 2008 19:34:58 -0000	1.2.2.21
+++ swfobject_api.module	11 Sep 2008 15:34:11 -0000
@@ -60,25 +60,19 @@
 function swfobject_api_settings_form() {
   $form = array();
 
-  $form['swfobject_api_settings'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('Settings'),
-    '#tree' => TRUE
-  );
-  $form['swfobject_api_settings']['swfoa_version'] = array(
+  $form['swfoa_version'] = array(
     '#type' => 'textfield',
     '#title' => t('Default minimum version required'),
     '#description' => t('This value can be overridden via the theme call.'),
-    '#default_value' => variable_get('swfoa_express', '6'),
+    '#default_value' => variable_get('swfoa_version', '6'),
     '#required' => TRUE
   );
-  $form['swfobject_api_settings']['swfoa_express'] = array(
+  $form['swfoa_express'] = array(
     '#type' => 'checkbox',
     '#title' => t('Enable express install.'),
     '#description' => t('Express install allows player upgrades without having to leave the site. Only versions 6.0.65 and above are supported.'),
     '#default_value' => variable_get('swfoa_express', false),
   );
-  $form['submit'] = array('#type' => 'submit', '#value' => t('Save settings'));
 
   return system_settings_form($form);
 }

