You are here

function update_status_force_status in Update Status 5

Callback to manually check the update status without cron.

1 string reference to 'update_status_force_status'
update_status_menu in ./update_status.module
Implementation of hook_menu().

File

./update_status.module, line 222

Code

function update_status_force_status() {
  update_status_refresh();
  variable_set('update_status_last', time());
  drupal_goto('admin/logs/updates');
}