Missing commits from r66268, revert class rename in r66267
authorAndrew Garrett <werdna@users.mediawiki.org>
Wed, 12 May 2010 13:38:56 +0000 (13:38 +0000)
committerAndrew Garrett <werdna@users.mediawiki.org>
Wed, 12 May 2010 13:38:56 +0000 (13:38 +0000)
maintenance/importDump.php
maintenance/renderDump.php

index c4f7c73..714d76d 100644 (file)
@@ -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' ) );
index c2e7d68..d36953f 100644 (file)
@@ -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' ) );