--- swfobject_api.module	2008-10-29 10:38:35.000000000 +0800
+++ swfobject_api.module.fixed	2008-12-16 16:59:15.000000000 +0800
@@ -48,25 +48,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_settings_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_settings_version', '6'),
     '#required' => TRUE,
   );
-  $form['swfobject_api_settings']['swfoa_express'] = array(
+  $form['swfoa_settings_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),
+    '#default_value' => variable_get('swfoa_settings_express', FALSE),
   );
-  $form['submit'] = array('#type' => 'submit', '#value' => t('Save settings'));
 
   return system_settings_form($form);
 }
@@ -116,10 +110,10 @@
     'width' => '100%',
     'height' => '100%',
     'no_flash' => t('Sorry, you need to install flash to see this content.'),
-    'version' => variable_get('swfoa_version', '6'),
+    'version' => variable_get('swfoa_settings_version', '6'),
     'type' => 'movie',
     'bg_color' => '#FFFFFF',
-    'express_redirect' => variable_get('swfoa_express', TRUE) ? drupal_get_path('module', 'swfobject_api') .'/expressinstall.swf' : 'false',
+    'express_redirect' => variable_get('swfoa_settings_express', TRUE) ? drupal_get_path('module', 'swfobject_api') .'/expressinstall.swf' : 'false',
     'class' => '',
   );
 
