X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FDatabaseUpdater.php;h=6f066cea1e66066bc635ce1dd42d0762d9c6209a;hb=59e7337ea612d03d08b67e6ada707e3d7ced738d;hp=aece3170f075f818e24511c4805f67a199c697d8;hpb=7c6d2a0fa28746b49d79345b609d9c7605ed4d63;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index aece3170f0..6f066cea1e 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -77,6 +77,7 @@ abstract class DatabaseUpdater { PopulateBacklinkNamespace::class, FixDefaultJsonContentPages::class, CleanupEmptyCategories::class, + AddRFCAndPMIDInterwiki::class, ]; /** @@ -633,7 +634,11 @@ abstract class DatabaseUpdater { * @param string $filename File name to open */ public function copyFile( $filename ) { - $this->db->sourceFile( $filename, false, false, false, + $this->db->sourceFile( + $filename, + null, + null, + __METHOD__, [ $this, 'appendLine' ] ); }