function update_refresh

Refreshes the release data after loading the necessary include file.

See also

_update_refresh()

1 call to update_refresh()
update_cron in drupal/modules/update/update.module
Implements hook_cron().

File

drupal/modules/update/update.module, line 467
Handles updates of Drupal core and contributed projects.

Code

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