From: Brion Vibber Date: Sat, 4 Nov 2006 15:27:55 +0000 (+0000) Subject: * Fix regression in streaming page dump generation X-Git-Tag: 1.31.0-rc.0~55287 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=af69b2b83d4670f1ac9c2ed2c42ec260089a3674;p=lhc%2Fweb%2Fwiklou.git * Fix regression in streaming page dump generation --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index bb422d23a2..f664bb1570 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -139,6 +139,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN disabled" on Special:Ipblocklist. * (bug 7774) MATH: aded more amstex functions * (bug 1182) MATH: fixed inconsistent rendering of upper case Greek letters in TeX +* Fix regression in streaming page dump generation + == Languages updated == diff --git a/maintenance/backup.inc b/maintenance/backup.inc index 8b4b672672..1a8ff4febb 100644 --- a/maintenance/backup.inc +++ b/maintenance/backup.inc @@ -175,7 +175,7 @@ class BackupDumper { $this->initProgress( $history ); $db =& $this->backupDb(); - $exporter = new WikiExporter( $db, $history, MW_EXPORT_STREAM, $text ); + $exporter = new WikiExporter( $db, $history, WikiExporter::STREAM, $text ); $wrapper = new ExportProgressFilter( $this->sink, $this ); $exporter->setOutputSink( $wrapper );