Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.440.2.16
diff -u -p -r1.440.2.16 system.module
--- modules/system/system.module	26 Jul 2007 21:20:21 -0000	1.440.2.16
+++ modules/system/system.module	26 Aug 2007 02:39:22 -0000
@@ -219,55 +219,64 @@ function system_menu($may_cache) {
       'title' => t('Site information'),
       'description' => t('Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.'),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_site_information_settings'));
+      'callback arguments' => array('system_site_information_settings'),
+      'access' => $access);
     $items[] = array(
       'path' => 'admin/settings/error-reporting',
       'title' => t('Error reporting'),
       'description' => t('Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.'),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_error_reporting_settings'));
+      'callback arguments' => array('system_error_reporting_settings'),
+      'access' => $access);
     $items[] = array(
       'path' => 'admin/settings/performance',
       'title' => t('Performance'),
       'description' => t('Enable or disable page caching for anonymous users, and enable or disable CSS preprocessor.'),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_performance_settings'));
+      'callback arguments' => array('system_performance_settings'),
+      'access' => $access);
     $items[] = array(
       'path' => 'admin/settings/file-system',
       'title' => t('File system'),
       'description' => t('Tell Drupal where to store uploaded files and how they are accessed.'),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_file_system_settings'));
+      'callback arguments' => array('system_file_system_settings'),
+      'access' => $access);
     $items[] = array(
       'path' => 'admin/settings/image-toolkit',
       'title' => t('Image toolkit'),
       'description' => t('Choose which image toolkit to use if you have installed optional toolkits.'),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_image_toolkit_settings'));
+      'callback arguments' => array('system_image_toolkit_settings'),
+      'access' => $access);
     $items[] = array(
       'path' => 'admin/content/rss-publishing',
       'title' => t('RSS publishing'),
       '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'));
+      'callback arguments' => array('system_rss_feeds_settings'),
+      'access' => $access);
     $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."),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_date_time_settings'));
+      'callback arguments' => array('system_date_time_settings'),
+      'access' => $access);
     $items[] = array(
       'path' => 'admin/settings/site-maintenance',
       'title' => t('Site maintenance'),
       'description' => t('Take the site off-line for maintenance or bring it back online.'),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_site_maintenance_settings'));
+      'callback arguments' => array('system_site_maintenance_settings'),
+      'access' => $access);
     $items[] = array(
       'path' => 'admin/settings/clean-urls',
       'title' => t('Clean URLs'),
       'description' => t('Enable or disable clean URLs for your site.'),
       'callback' => 'drupal_get_form',
-      'callback arguments' => array('system_clean_url_settings'));
+      'callback arguments' => array('system_clean_url_settings'),
+      'access' => $access);
 
 
     // Logs:
