diff -u'rNF^function' modules/node/node.module modules/node/node.module
--- modules/node/node.module	2006-09-01 05:00:06.000000000 -0400
+++ modules/node/node.module	2006-09-01 12:59:57.000000000 -0400
@@ -996,7 +996,7 @@ function node_menu($may_cache) {
       'position' => 'left',
       'weight' => -10,
       'callback' => 'system_admin_menu_block_page',
-      'access' => user_access('access configuration pages'),
+      'access' => user_access('administer site configuration'),
     );
 
     $items[] = array(
     
     
diff -u'rNF^function' modules/system/system.module modules/system/system.module
--- modules/system/system.module	2006-09-01 12:53:50.000000000 -0400
+++ modules/system/system.module	2006-09-01 12:59:11.000000000 -0400
@@ -191,6 +191,15 @@ function system_menu($may_cache) {
       'callback arguments' => array('system_modules'),
       'access' => $access);
 
+    // Content
+    $items[] = array(
+      'access' => $access,
+      'path' => 'admin/content/rss-feed',
+      'title' => t('RSS feeds'),
+      'description' => t('Configure the number of items per feed and whether feeds should be titles/teasers/full-text.'),
+      'callback' => 'drupal_get_form',
+      'callback arguments' => array('system_rss_feeds_settings'));    
+
     // Settings:
     $items[] = array(
       'path' => 'admin/settings/site-information',
@@ -223,13 +232,6 @@ function system_menu($may_cache) {
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_image_toolkit_settings'));
     $items[] = array(
-      'access' => $access,
-      'path' => 'admin/content/rss-feed',
-      'title' => t('RSS feeds'),
-      'description' => t('Configure the number of items per feed and whether feeds should be titles/teasers/full-text.'),
-      'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_rss_feeds_settings'));
-    $items[] = array(
       'path' => 'admin/settings/date-time',
       'title' => t('date and time'),
       'description' => t('Settings for how Drupal displays date and time, as well as the system\'s default timezone.'),
       
       
diff -u'rNF^function' modules/user/user.module modules/user/user.module
--- modules/user/user.module	2006-09-01 05:00:06.000000000 -0400
+++ modules/user/user.module	2006-09-01 13:00:33.000000000 -0400
@@ -701,7 +701,7 @@ function user_menu($may_cache) {
       'description' => t('Manage your site\'s users, groups and access to site features.'),
       'position' => 'left',
       'callback' => 'system_admin_menu_block_page',
-      'access' => user_access('access configuration pages'),
+      'access' => user_access('administer site configuration'),
     );
     $items[] = array('path' => 'admin/user/user', 'title' => t('users'),
       'description' => t('List, add, and edit users.'),
