From 066c55dcc92224d77e59eaa97a0fed5209bb3d40 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 15 Aug 2006 18:31:45 +0000 Subject: [PATCH] Fix regression in regression fix --- includes/SpecialExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialExport.php b/includes/SpecialExport.php index e3ba023d83..a402b659ab 100644 --- a/includes/SpecialExport.php +++ b/includes/SpecialExport.php @@ -71,7 +71,7 @@ function wfSpecialExport( $page = '' ) { } } else { // Default to current-only for GET requests - $page = $wgRequest->getText( 'pages' ); + $page = $wgRequest->getText( 'pages', $page ); $historyCheck = $wgRequest->getCheck( 'history' ); if( $historyCheck ) { $history = MW_EXPORT_FULL; -- 2.20.1