#200028 follow up by dww: clear update module cache on update.php run as well
parent
315c419322
commit
46c1d9239f
|
@ -362,6 +362,10 @@ function update_results_page() {
|
||||||
function update_info_page() {
|
function update_info_page() {
|
||||||
// Change query-strings on css/js files to enforce reload for all users.
|
// Change query-strings on css/js files to enforce reload for all users.
|
||||||
_drupal_flush_css_js();
|
_drupal_flush_css_js();
|
||||||
|
// Flush the cache of all data for the update status module.
|
||||||
|
if (db_table_exists('cache_update')) {
|
||||||
|
cache_clear_all('*', 'cache_update', '*');
|
||||||
|
}
|
||||||
|
|
||||||
update_task_list('info');
|
update_task_list('info');
|
||||||
drupal_set_title('Drupal database update');
|
drupal_set_title('Drupal database update');
|
||||||
|
|
Loading…
Reference in New Issue