Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.734
diff -u -r1.734 node.module
--- modules/node/node.module	21 Nov 2006 20:14:18 -0000	1.734
+++ modules/node/node.module	23 Nov 2006 10:46:22 -0000
@@ -985,7 +985,7 @@
  */
 function node_configure_validate($form_id, $form_values) {
   if ($form_values['op'] == t('Rebuild permissions')) {
-    drupal_goto('admin/content/node-settings/rebuild');
+    drupal_goto('admin/content/node/settings/rebuild');
   }
 }
 
@@ -994,7 +994,7 @@
  */
 function node_configure_rebuild_confirm() {
   return confirm_form(array(), t('Are you sure you want to rebuild node permissions on the site?'),
-                  'admin/content/node-settings', t('This will wipe all current node permissions and rebuild them based on current settings. Rebuilding the permissions may take a while so please be patient. This action cannot be undone.'), t('Rebuild permissions'), t('Cancel'));
+                  'admin/content/node/settings', t('This will wipe all current node permissions and rebuild them based on current settings. Rebuilding the permissions may take a while so please be patient. This action cannot be undone.'), t('Rebuild permissions'), t('Cancel'));
 }
 
 /**
@@ -1003,7 +1003,7 @@
 function node_configure_rebuild_confirm_submit($form_id, &$form) {
   node_access_rebuild();
   drupal_set_message(t('The node access table has been rebuilt.'));
-  return 'admin/content/node-settings';
+  return 'admin/content/node/settings';
 }
 
 /**
@@ -1071,15 +1071,16 @@
     }
 
     $items[] = array(
-      'path' => 'admin/content/node-settings',
-      'title' => t('Post settings'),
+      'path' => 'admin/content/node/settings',
+      'title' => t('Settings'),
       'description' => t('Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('node_configure'),
-      'access' => user_access('administer nodes')
+      'access' => user_access('administer nodes'),
+	  'type' => MENU_LOCAL_TASK
     );
     $items[] = array(
-      'path' => 'admin/content/node-settings/rebuild',
+      'path' => 'admin/content/node/settings/rebuild',
       'title' => t('rebuild permissions'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('node_configure_rebuild_confirm'),
