? .menu_site_map.module.swp
? menu_site_map-605744.patch
? menu_site_map-605836-menu_local_task_fix.patch
? menu_site_map-629266-check_for_empty_array.patch
Index: menu_site_map.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/menu_site_map/menu_site_map.module,v
retrieving revision 1.1
diff -u -p -r1.1 menu_site_map.module
--- menu_site_map.module	15 Oct 2009 18:10:43 -0000	1.1
+++ menu_site_map.module	25 Nov 2009 21:39:18 -0000
@@ -37,6 +37,17 @@ function menu_site_map_menu() {
     'type' => MENU_NORMAL_ITEM,
   );
 
+  $items['admin/settings/sitemap/menu_sitemap/general'] = array(
+    'title' => 'General',
+    'description' => 'Control which menu(s) should be displayed on the site map and the depth of the menus.',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('menu_site_map_settings_form'),
+    'access arguments' => array('administer site configuration'),
+    'file' => 'menu_site_map.admin.inc',  
+    'type' => MENU_DEFAULT_LOCAL_TASK,
+    'weight' => 0,
+  );
+
   $items['admin/settings/sitemap/menu_sitemap/select_links'] = array(
     'title' => 'Select site map menu links',
     'type' => MENU_LOCAL_TASK,
@@ -44,6 +55,7 @@ function menu_site_map_menu() {
     'page arguments' => array('menu_site_map_select_menu_links_form'),
     'access arguments' => array('administer site configuration'),
     'file' => 'menu_site_map.admin.inc',  
+    'weight' => 1,
   );
 
   return $items;
