--- gmaplocation.module	2009-07-13 17:12:30.000000000 -0500
+++ gmaplocation.module	2009-07-13 12:21:55.000000000 -0500
@@ -62,19 +62,20 @@ function gmaplocation_admin_settings() {
     '#default_value' => variable_get('gmaplocation_title', t('Our Location')),
     '#description' => t('The title of the page.')
   );
-  $form['info']['gmaplocation_additional']['gmaplocation_body'] = array('#type' => 'textarea',
+  $form['info']['gmaplocation_body_filter']['gmaplocation_body'] = array('#type' => 'textarea',
     '#required' => FALSE,
     '#title' => t('Location Information (shown above map)'),
     '#default_value' => variable_get('gmaplocation_body', ''),
     '#description' => t('Any additional information that you would like to include above the map.')
   );
-  $form['info']['gmaplocation_additional']['gmaplocation_footer'] = array('#type' => 'textarea',
+  $form['info']['gmaplocation_body_filter']['format'] = filter_form(FILTER_FORMAT_DEFAULT, null, $parents=array('info', 'gmaplocation_body_filter','format'));
+  $form['info']['gmaplocation_footer_filter']['gmaplocation_footer'] = array('#type' => 'textarea',
     '#required' => FALSE,
     '#title' => t('Location Information (shown below map)'),
     '#default_value' => variable_get('gmaplocation_footer', ''),
     '#description' => t('Any additional information you would like to include below the map.')
   );
-  $form['info']['gmaplocation_additional']['format'] = filter_form();
+  $form['info']['gmaplocation_footer_filter']['format'] = filter_form(FILTER_FORMAT_DEFAULT, null, $parents=array('info', 'gmaplocation_footer_filter','format'));
   $form["location"] = array('#type' => 'fieldset',
     '#title' => t('Your location'),
     '#collapsible' => TRUE,

