X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22statistiques_visites%22%2C%22%22%29%20.%20%22?a=blobdiff_plain;f=maintenance%2FpreprocessDump.php;h=d540e8f9020355b80289ef154d8a557f44739ef5;hb=ad776c7d5f8deee581bf3338c76c6312c3e2933e;hp=17d97b0583abbb8d76ce8d74d2c66e0d1857efdb;hpb=5bf7087cefdb77daaefd7a488ae68cae60b3e406;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/preprocessDump.php b/maintenance/preprocessDump.php index 17d97b0583..d540e8f902 100644 --- a/maintenance/preprocessDump.php +++ b/maintenance/preprocessDump.php @@ -67,7 +67,7 @@ class PreprocessDump extends DumpIterator { } elseif ( isset( $wgParserConf['preprocessorClass'] ) ) { $name = $wgParserConf['preprocessorClass']; } else { - $name = 'Preprocessor_DOM'; + $name = Preprocessor_DOM::class; } $wgParser->firstCallInit(); @@ -94,5 +94,5 @@ class PreprocessDump extends DumpIterator { } } -$maintClass = "PreprocessDump"; +$maintClass = PreprocessDump::class; require_once RUN_MAINTENANCE_IF_MAIN;