Cleared ResourceLoader blob store after update.php finishes.
authorTyler Anthony Romeo <tylerromeo@gmail.com>
Tue, 9 Apr 2013 18:14:57 +0000 (18:14 +0000)
committerTyler Anthony Romeo <tylerromeo@gmail.com>
Tue, 9 Apr 2013 18:14:57 +0000 (18:14 +0000)
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

index 94164eb..f525319 100644 (file)
@@ -865,6 +865,7 @@ abstract class DatabaseUpdater {
                if ( $wgLocalisationCacheConf['manualRecache'] ) {
                        $this->rebuildLocalisationCache();
                }
+               MessageBlobStore::clear();
                $this->output( "done.\n" );
        }