From f85251e66654f7631cb24188ba55b1ba9a8438b0 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Wed, 12 May 2010 13:38:56 +0000 Subject: [PATCH] Missing commits from r66268, revert class rename in r66267 --- maintenance/importDump.php | 2 +- maintenance/renderDump.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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' ) ); -- 2.20.1