From 3cd281743f5869539b31e294d55acb1abd5aa3a8 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 7 Feb 2009 15:22:01 +0000 Subject: [PATCH] Correct fix for the E_NOTICE fixed in r46977. --- includes/specials/SpecialExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialExport.php b/includes/specials/SpecialExport.php index d729abf03b..6b7e55c443 100644 --- a/includes/specials/SpecialExport.php +++ b/includes/specials/SpecialExport.php @@ -95,7 +95,7 @@ class SpecialExport extends SpecialPage { if( $page != '' ) $this->doExport = true; } else { // Default to current-only for GET requests - $page = $wgRequest->getText( 'pages' ); + $page = $wgRequest->getText( 'pages', $par ); $historyCheck = $wgRequest->getCheck( 'history' ); if( $historyCheck ) { $history = WikiExporter::FULL; -- 2.20.1