summaryrefslogtreecommitdiff
path: root/modules/update
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-29 14:08:36 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-29 14:08:36 +0000
commit9d7f90f11b8fe2c8b4d176c37b6830c018710f12 (patch)
treeaaec1fdb732a35b3339d0924cbb3c6468415c12e /modules/update
parentac30bf8a82adf6a5c5b76e18ab46edf7f376ce40 (diff)
downloadbrdo-9d7f90f11b8fe2c8b4d176c37b6830c018710f12.tar.gz
brdo-9d7f90f11b8fe2c8b4d176c37b6830c018710f12.tar.bz2
- Patch #297207 by Gábor Hojtsy: move the update settings.
Diffstat (limited to 'modules/update')
-rw-r--r--modules/update/update.module11
1 files changed, 8 insertions, 3 deletions
diff --git a/modules/update/update.module b/modules/update/update.module
index f41ec8b61..7f474d24e 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -134,13 +134,18 @@ function update_menu() {
'weight' => 10,
'file' => 'update.report.inc',
);
- $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.',
+ $items['admin/reports/updates/list'] = array(
+ 'title' => 'List',
+ 'access arguments' => array('administer site configuration'),
+ 'type' => MENU_DEFAULT_LOCAL_TASK,
+ );
+ $items['admin/reports/updates/settings'] = array(
+ 'title' => 'Settings',
'page callback' => 'drupal_get_form',
'page arguments' => array('update_settings'),
'access arguments' => array('administer site configuration'),
'file' => 'update.settings.inc',
+ 'type' => MENU_LOCAL_TASK,
);
$items['admin/reports/updates/check'] = array(
'title' => 'Manual update check',