diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/update.php b/update.php index 2e9390d08..d43c7845a 100644 --- a/update.php +++ b/update.php @@ -322,7 +322,7 @@ function update_selection_page() { drupal_set_title('Drupal database update'); // Prevent browser from using cached drupal.js or update.js - drupal_add_js('misc/update.js', TRUE); + drupal_add_js('misc/update.js', 'core', 'header', FALSE, TRUE); $output .= drupal_get_form('update_script_selection_form'); return $output; @@ -403,8 +403,8 @@ function update_update_page() { function update_progress_page() { // Prevent browser from using cached drupal.js or update.js - drupal_add_js('misc/progress.js', TRUE); - drupal_add_js('misc/update.js', TRUE); + 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>'; |