From eca5c5007e827243234740ba2b449cefaa071ef6 Mon Sep 17 00:00:00 2001 From: Tyler Anthony Romeo Date: Tue, 9 Apr 2013 18:14:57 +0000 Subject: [PATCH] Cleared ResourceLoader blob store after update.php finishes. Update.php is supposed to clear all localization caches. This makes sure to clear the ResourceLoader's own message cache as well. Bug: 44524 Change-Id: I15ceb60f5e2e4d3ed9ba818fe6cd619f9adce5b2 --- includes/installer/DatabaseUpdater.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index 94164eb555..f5253191af 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -865,6 +865,7 @@ abstract class DatabaseUpdater { if ( $wgLocalisationCacheConf['manualRecache'] ) { $this->rebuildLocalisationCache(); } + MessageBlobStore::clear(); $this->output( "done.\n" ); } -- 2.20.1