| 5 update.php |
update_progress_page() |
File
- ./update.php, line 405
- Administrative page for handling updates from one Drupal version to another.
Code
function update_progress_page() {
drupal_add_js('misc/progress.js', 'core', 'header', FALSE, TRUE);
drupal_add_js('misc/update.js', 'core', 'header', FALSE, TRUE);
drupal_set_title('Updating');
$output = '<div id="progress"></div>';
$output .= '<p id="wait">Please wait while your site is being updated.</p>';
return $output;
}
Login or
register to post comments