diff --git a/browscap.admin.inc b/browscap.admin.inc
index 89d6fb1..b4b91e6 100644
--- a/browscap.admin.inc
+++ b/browscap.admin.inc
@@ -16,20 +16,16 @@ function browscap_settings_form($form, &$form_state) {
     $version = t('Never fetched');
   }
 
-  $form['data'] = array(
-    '#type' => 'fieldset',
-    '#title' => t('User agent detection settings'),
-  );
-  $form['data']['browscap_data_version'] = array(
+  $form['browscap_data_version'] = array(
     '#markup' => '<p>' . t('Current browscap data version: %fileversion.', array('%fileversion' => $version)) . '</p>',
   );
-  $form['data']['browscap_enable_automatic_updates'] = array(
+  $form['browscap_enable_automatic_updates'] = array(
     '#type' => 'checkbox',
     '#title' => t('Enable automatic updates'),
     '#default_value' => variable_get('browscap_enable_automatic_updates', TRUE),
     '#description' => t('Automatically update the user agent detection information.'),
   );
-  $form['data']['browscap_automatic_updates_timer'] = array(
+  $form['browscap_automatic_updates_timer'] = array(
     '#type' => 'select',
     '#title' => t('Check for new user agent detection information every'),
     '#default_value' => variable_get('browscap_automatic_updates_timer', 604800),
diff --git a/browscap.module b/browscap.module
index a6c526a..726dc8c 100644
--- a/browscap.module
+++ b/browscap.module
@@ -24,7 +24,7 @@ function browscap_permission() {
 function browscap_menu() {
   $items['admin/config/system/browscap'] = array(
     'title' => 'Browscap',
-    'description' => 'Configure user agent monitoring and browscap information settings.',
+    'description' => 'View the current browscap data version and configure automatic update settings.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('browscap_settings_form'),
     'access arguments' => array('administer browscap'),
@@ -40,7 +40,7 @@ function browscap_menu() {
 function browscap_help($path, $arg) {
   switch ($path) {
     case 'admin/config/system/browscap':
-      return '<p>' . t('Settings for user agent detection and the log that Browscap will keep about user agents that visit the site. See <a href="@statistics">user agent statistics</a> for the actual information.', array('@statistics' => url('admin/reports/browscap'))) . '</p>';
+      return '<p>' . t('View the current browscap data version and configure automatic update settings.') . '</p>';
   }
 }
 
