From: Tyler Anthony Romeo Date: Tue, 9 Apr 2013 18:14:57 +0000 (+0000) Subject: Cleared ResourceLoader blob store after update.php finishes. X-Git-Tag: 1.31.0-rc.0~20055^2 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=eca5c5007e827243234740ba2b449cefaa071ef6;p=lhc%2Fweb%2Fwiklou.git 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 --- 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" ); }