function upgrade_status_refresh in Upgrade Status 7
Same name and namespace in other branches
- 5 upgrade_status.admin.inc \upgrade_status_refresh()
- 6 upgrade_status.module \upgrade_status_refresh()
Refreshes the release data after loading the necessary include file.
See also
1 call to upgrade_status_refresh()
- upgrade_status_core_version_form_submit in ./
upgrade_status.module - Set the new Drupal core version in a variable; refresh project data.
File
- ./
upgrade_status.module, line 178 - Checks to see if your installed modules are available for the next major release of Drupal.
Code
function upgrade_status_refresh() {
module_load_include('inc', 'upgrade_status', 'upgrade_status.fetch');
return _upgrade_status_refresh();
}