Index: simplenews.module
===================================================================
--- simplenews.module	(revision 451)
+++ simplenews.module	(working copy)
@@ -215,26 +215,23 @@
     'title' => 'Simplenews',
     'description' => 'Manage simplenews configuration.',
     'type' => MENU_NORMAL_ITEM,
-    'page callback' => 'system_admin_menu_block_page',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('simplenews_admin_settings'),
     'access arguments' => array('administer simplenews settings'),
-    'file' => 'system.admin.inc',
-    'file path' => drupal_get_path('module', 'system'),
+    'file' => 'simplenews.admin.inc',
   );
 
   $items['admin/settings/simplenews/general'] = array(
     'title' => 'General',
     'description' => 'Simplenews content type and vocabulary settings.',
-    'type' => MENU_NORMAL_ITEM,
-    'page callback' => 'drupal_get_form',
-    'page arguments' => array('simplenews_admin_settings'),
+    'type' => MENU_DEFAULT_LOCAL_TASK,
     'access arguments' => array('administer simplenews settings'),
-    'file' => 'simplenews.admin.inc',
     'weight' => -10,
   );
   $items['admin/settings/simplenews/newsletter'] = array(
     'title' => 'Newsletter',
     'description' => 'Newsletter default settings and sender data.',
-    'type' => MENU_NORMAL_ITEM,
+    'type' => MENU_LOCAL_TASK,
     'page callback' => 'drupal_get_form',
     'page arguments' => array('simplenews_admin_settings_newsletter'),
     'access arguments' => array('administer simplenews settings'),
@@ -244,7 +241,7 @@
   $items['admin/settings/simplenews/subscription'] = array(
     'title' => 'Subscription',
     'description' => 'Subscription settings, opt-in/out confirmation email text.',
-    'type' => MENU_NORMAL_ITEM,
+    'type' => MENU_LOCAL_TASK,
     'page callback' => 'drupal_get_form',
     'page arguments' => array('simplenews_admin_settings_subscription'),
     'access arguments' => array('administer simplenews settings'),
@@ -254,7 +251,7 @@
   $items['admin/settings/simplenews/mail'] = array(
     'title' => 'Send mail',
     'description' => 'Send mail, cron and debug options.',
-    'type' => MENU_NORMAL_ITEM,
+    'type' => MENU_LOCAL_TASK,
     'page callback' => 'drupal_get_form',
     'page arguments' => array('simplenews_admin_settings_mail'),
     'access arguments' => array('administer simplenews settings'),
