Same name and namespace in other branches
  1. 7.x includes/update.inc \update_finished()
1 string reference to 'update_finished'
update_batch in ./update.php

File

./update.php, line 288
Administrative page for handling updates from one Drupal version to another.

Code

function update_finished($success, $results, $operations) {

  // clear the caches in case the data has been updated.
  drupal_flush_all_caches();
  $_SESSION['update_results'] = $results;
  $_SESSION['update_success'] = $success;
  $_SESSION['updates_remaining'] = $operations;
}