Index: media_mover_api.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/media_mover/media_mover_api.module,v
retrieving revision 1.1.2.72
diff -u -p -r1.1.2.72 media_mover_api.module
--- media_mover_api.module	23 Mar 2008 18:53:31 -0000	1.1.2.72
+++ media_mover_api.module	8 Apr 2008 21:28:50 -0000
@@ -65,14 +65,14 @@ function media_mover_api_help($section) 
  */
 function media_mover_api_menu($may_cache) {
   global $user;
- 
+    
   // main page
   $items[] = array(
     'path' => 'admin/media_mover',
     'title' => t('Media Mover'),
-    'callback' => 'media_mover_api_page',
+    'description' => t('Configure Media Mover settings.'),
+    'callback' => 'system_admin_menu_block_page',
     'access' => user_access('administer media_mover'),
-    'type' => MENU_NORMAL_ITEM,
   );
   
   // main page
@@ -81,7 +81,6 @@ function media_mover_api_menu($may_cache
     'title' => t('Overview'),
     'callback' => 'media_mover_api_page',
     'access' => user_access('administer media_mover'),
-    'type' => MENU_DEFAULT_LOCAL_TASK,
     'weight' => -10,
   );
 
@@ -92,20 +91,8 @@ function media_mover_api_menu($may_cache
     'callback' => 'drupal_get_form',
     'callback arguments' => array('media_mover_api_admin_settings'),
     'access' => user_access('administer media_mover'),
-    'type' => MENU_LOCAL_TASK,
     'weight' => -9,
   );
-
-  // settings in the normal place
-  $items[] = array(
-    'path' => 'admin/settings/media_mover',
-    'title' => t('Media Mover'),
-    'description' => t('Configure default settings for Media Mover modules.'),
-    'callback' => 'drupal_get_form',
-    'callback arguments' => array('media_mover_admin_settings'),
-    'access' => user_access('administer media_mover'),
-    'type' => MENU_NORMAL_ITEM, // optional
-     );
  
   // add a new configuration
   $items[] = array(
@@ -113,7 +100,6 @@ function media_mover_api_menu($may_cache
     'title' => t('Add Config'),
     'callback' => 'media_mover_add_config',
     'access' => user_access('administer media_mover'),
-    'type' => MENU_LOCAL_TASK,
     'weight' => -9,
   );    
   
@@ -124,7 +110,6 @@ function media_mover_api_menu($may_cache
     'callback' => 'media_mover_api_list_all_files',
     'callback arguments' => array(arg(3)),
     'access' => user_access('administer media_mover'),
-    'type' => MENU_LOCAL_TASK,
     'weight' => -9,
   );      
  
