From: Andrew Garrett Date: Wed, 12 May 2010 13:38:56 +0000 (+0000) Subject: Missing commits from r66268, revert class rename in r66267 X-Git-Tag: 1.31.0-rc.0~36875 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=f85251e66654f7631cb24188ba55b1ba9a8438b0;p=lhc%2Fweb%2Fwiklou.git Missing commits from r66268, revert class rename in r66267 --- diff --git a/maintenance/importDump.php b/maintenance/importDump.php index c4f7c73424..714d76d875 100644 --- a/maintenance/importDump.php +++ b/maintenance/importDump.php @@ -140,7 +140,7 @@ class BackupReader { $this->startTime = wfTime(); $source = new ImportStreamSource( $handle ); - $importer = new ImportXMLReader( $source ); + $importer = new WikiImporter( $source ); $importer->setDebug( $this->debug ); $importer->setPageCallback( array( &$this, 'reportPage' ) ); diff --git a/maintenance/renderDump.php b/maintenance/renderDump.php index c2e7d68db5..d36953f89f 100644 --- a/maintenance/renderDump.php +++ b/maintenance/renderDump.php @@ -46,7 +46,7 @@ class DumpRenderer extends Maintenance { $this->startTime = wfTime(); $source = new ImportStreamSource( $this->getStdin() ); - $importer = new ImportXMLReader( $source ); + $importer = new WikiImporter( $source ); $importer->setRevisionCallback( array( &$this, 'handleRevision' ) );