You are here

function services_security_user_update_finish in Services 7.3

Executes final tasks at the end of the security update follow up.

2 calls to services_security_user_update_finish()
services_security_setup_batch in ./services.module
services_security_user_update_finished in ./services.module

File

./services.module, line 84
Provides a generic but powerful API for web services.

Code

function services_security_user_update_finish() {
  drupal_set_message('Services security update follow up is complete.');
  variable_set('services_security_update_1', TRUE);
  if (!drupal_is_cli()) {
    drupal_goto('admin/reports/status');
  }
}