diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-08-22 12:30:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-08-22 12:30:19 +0000 |
commit | f0b1d9f8d3070c82bc067522f1e63210017c0ac7 (patch) | |
tree | 89752bb235a6ac5c206f928932f087ac8534f315 | |
parent | 69e6f411a9ed5dcf3f71d4320218620d3444d295 (diff) | |
download | brdo-f0b1d9f8d3070c82bc067522f1e63210017c0ac7.tar.gz brdo-f0b1d9f8d3070c82bc067522f1e63210017c0ac7.tar.bz2 |
- Patch #297207 by kscheirer and TapocoL: move update notification settings to more visible place.
-rw-r--r-- | modules/update/update.module | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/modules/update/update.module b/modules/update/update.module index 87f3b9a3c..8a08f986c 100644 --- a/modules/update/update.module +++ b/modules/update/update.module @@ -123,18 +123,12 @@ function update_menu() { 'access arguments' => array('administer site configuration'), 'weight' => 10, ); - $items['admin/reports/updates/list'] = array( - 'title' => 'List', - 'page callback' => 'update_status', - 'access arguments' => array('administer site configuration'), - 'type' => MENU_DEFAULT_LOCAL_TASK, - ); - $items['admin/reports/updates/settings'] = array( - 'title' => 'Settings', + $items['admin/settings/updates'] = array( + 'title' => 'Updates', + 'description' => 'Change frequency of checks for available updates to your installed modules and themes, and how you would like to be notified.', 'page callback' => 'drupal_get_form', 'page arguments' => array('update_settings'), 'access arguments' => array('administer site configuration'), - 'type' => MENU_LOCAL_TASK, ); $items['admin/reports/updates/check'] = array( 'title' => 'Manual update check', |