X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FDatabaseUpdater.php;h=702f850c982d4d629120a128e5af984c25df36a7;hb=c02a1020471adcdf00138f470cddaa3e3cbe68cc;hp=ea1213c306c9c5b7e4bfd0fa15ccf6b680cd9b59;hpb=6f6638e01e5f5099fe400bf338a8a6e9790eaf91;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index ea1213c306..702f850c98 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -612,7 +612,7 @@ abstract class DatabaseUpdater { * Append a line to the open filehandle. The line is assumed to * be a complete SQL statement. * - * This is used as a callback for for sourceLine(). + * This is used as a callback for sourceLine(). * * @param string $line Text to append to the file * @return bool False to skip actually executing the file @@ -932,7 +932,9 @@ abstract class DatabaseUpdater { if ( $wgLocalisationCacheConf['manualRecache'] ) { $this->rebuildLocalisationCache(); } - MessageBlobStore::getInstance()->clear(); + $blobStore = new MessageBlobStore(); + $blobStore->clear(); + $this->db->delete( 'module_deps', '*', __METHOD__ ); $this->output( "done.\n" ); }