summaryrefslogtreecommitdiff
path: root/modules/update/update.fetch.inc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-20 21:57:50 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-20 21:57:50 +0000
commit7c31bcdeac94c254130845c3959753b68c36ea1e (patch)
tree334f1a2abbd9de134fba66bcb435b3b2e6c57a1b /modules/update/update.fetch.inc
parent6dcfce0127bc7ea3f4bb843ddcaf44becd98d9fa (diff)
downloadbrdo-7c31bcdeac94c254130845c3959753b68c36ea1e.tar.gz
brdo-7c31bcdeac94c254130845c3959753b68c36ea1e.tar.bz2
#165140 by dww: rename logs to reports (usability improvement)
Diffstat (limited to 'modules/update/update.fetch.inc')
-rw-r--r--modules/update/update.fetch.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/update/update.fetch.inc b/modules/update/update.fetch.inc
index 7a3a9765e..a79e71c3a 100644
--- a/modules/update/update.fetch.inc
+++ b/modules/update/update.fetch.inc
@@ -16,7 +16,7 @@ function update_manual_status() {
else {
drupal_set_message(t('Unable to fetch any information about available new releases and updates.'), 'error');
}
- drupal_goto('admin/logs/updates');
+ drupal_goto('admin/reports/updates');
}
/**
@@ -45,10 +45,10 @@ function _update_refresh() {
$frequency = variable_get('update_check_frequency', 1);
cache_set('update_info', $available, 'cache_update', time() + (60 * 60 * 24 * $frequency));
variable_set('update_last_check', time());
- watchdog('update', 'Fetched information about all available new releases and updates.', array(), WATCHDOG_NOTICE, l('view', 'admin/logs/updates'));
+ watchdog('update', 'Fetched information about all available new releases and updates.', array(), WATCHDOG_NOTICE, l('view', 'admin/reports/updates'));
}
else {
- watchdog('update', 'Unable to fetch any information about available new releases and updates.', array(), WATCHDOG_ERROR, l('view', 'admin/logs/updates'));
+ watchdog('update', 'Unable to fetch any information about available new releases and updates.', array(), WATCHDOG_ERROR, l('view', 'admin/reports/updates'));
}
return $available;
}