diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 8f7603da2..c5b39e09e 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -706,19 +706,13 @@ function system_menu() { 'page arguments' => array('system_site_information_settings'), 'access arguments' => array('administer site configuration'), ); - $items['admin/settings/logging'] = array( + $items['admin/config/development/logging'] = array( 'title' => 'Logging and errors', 'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.", 'page callback' => 'drupal_get_form', 'page arguments' => array('system_logging_settings'), 'access arguments' => array('administer site configuration'), ); - $items['admin/settings/logging/settings'] = array( - 'title' => 'Settings', - 'access arguments' => array('administer site configuration'), - 'type' => MENU_DEFAULT_LOCAL_TASK, - 'weight' => -1, - ); $items['admin/settings/file-system'] = array( 'title' => 'File system', 'description' => 'Tell Drupal where to store uploaded files and how they are accessed.', |