From: Brion Vibber Date: Wed, 28 Jun 2006 19:45:41 +0000 (+0000) Subject: * (bug 6472) Fix regression in Special:Export with multiple pages X-Git-Tag: 1.31.0-rc.0~56547 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=e7a64f3e993c8e5446f2ed8bb7290c0e9fdfa666;p=lhc%2Fweb%2Fwiklou.git * (bug 6472) Fix regression in Special:Export with multiple pages --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d435114455..4ca8b1b220 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -589,6 +589,8 @@ Some default configuration options have changed: * Show a more specific message when an anonymous user tries to access Special:Watchlist * (bug 3278) Paging links in Special:Prefixindex * Added Latvian localization (lv) +* (bug 6472) Fix regression in Special:Export with multiple pages + == Compatibility == diff --git a/includes/SpecialExport.php b/includes/SpecialExport.php index e589b57b1b..73dcbcd588 100644 --- a/includes/SpecialExport.php +++ b/includes/SpecialExport.php @@ -80,7 +80,7 @@ function wfSpecialExport( $page = '' ) { } } } - $exporter->pagesByName( $pages ); + $exporter->pageByName( $page ); } $exporter->closeStream();