function update_refresh

7.x update.module update_refresh()
6.x 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.

File

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ā€¦

Code

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