function update_refresh in Drupal 6
Same name and namespace in other branches
- 8 core/modules/update/update.module \update_refresh()
- 7 modules/update/update.module \update_refresh()
- 9 core/modules/update/update.module \update_refresh()
- 10 core/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 modules/
update/ update.module - Implementation of hook_cron().
- update_get_available in 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
- 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();
}