summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--update.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/update.php b/update.php
index 403d4b716..3105cbc55 100644
--- a/update.php
+++ b/update.php
@@ -419,6 +419,13 @@ function update_do_updates() {
else {
$percentage = 100;
}
+
+ // $update['module'] will be unset (the while loop above wasn't entered) when
+ // we are finished with all updates. Clear the cache.
+ if (!isset($update['module'])) {
+ db_query('DELETE FROM {cache}');
+ }
+
return array($percentage, isset($update['module']) ? 'Updating '. $update['module'] .' module' : 'Updating complete');
}