function update_refresh

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/update/update.module \update_refresh()

Wrapper to load the include file and then refresh the release data.

2 calls to update_refresh()
update_cron in drupal-6.x/modules/update/update.module
Implementation of hook_cron().
update_get_available in drupal-6.x/modules/update/update.module
Internal helper to try to get the update information from the cache if possible, and to refresh the cache when necessary.

Archivo

drupal-6.x/modules/update/update.module, line 380
The "Update status" module checks for available updates of Drupal core and any installed contributed modules and themes. It warns site administrators if newer releases are available via the system status report (admin/reports/status), the…

Código

function update_refresh() {
  module_load_include('inc', 'update', 'update.fetch');
  return _update_refresh();
}