Mercurial > defr > drupal > core
diff modules/update/update.fetch.inc @ 5:2427550111ae 6.2
Drupal 6.2
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 23 Dec 2008 14:30:08 +0100 |
parents | c1f4ac30525a |
children | 3edae6ecd6c6 |
line wrap: on
line diff
--- a/modules/update/update.fetch.inc Tue Dec 23 14:29:21 2008 +0100 +++ b/modules/update/update.fetch.inc Tue Dec 23 14:30:08 2008 +0100 @@ -1,5 +1,5 @@ <?php -// $Id: update.fetch.inc,v 1.7 2008/01/30 10:14:42 goba Exp $ +// $Id: update.fetch.inc,v 1.7.2.1 2008/04/09 18:36:58 goba Exp $ /** * @file @@ -54,11 +54,11 @@ $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/reports/updates')); + watchdog('update', 'Fetched information about all available new releases and updates.', array(), WATCHDOG_NOTICE, l(t('view'), 'admin/reports/updates')); } else { module_invoke('system', 'check_http_request'); - watchdog('update', 'Unable to fetch any information about available new releases and updates.', array(), WATCHDOG_ERROR, l('view', 'admin/reports/updates')); + watchdog('update', 'Unable to fetch any information about available new releases and updates.', array(), WATCHDOG_ERROR, l(t('view'), 'admin/reports/updates')); } return $available; }