From e7a64f3e993c8e5446f2ed8bb7290c0e9fdfa666 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 28 Jun 2006 19:45:41 +0000 Subject: [PATCH] * (bug 6472) Fix regression in Special:Export with multiple pages --- RELEASE-NOTES | 2 ++ includes/SpecialExport.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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(); -- 2.20.1