From: Alexandre Emsenhuber Date: Sat, 7 Feb 2009 15:22:01 +0000 (+0000) Subject: Correct fix for the E_NOTICE fixed in r46977. X-Git-Tag: 1.31.0-rc.0~42986 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=3cd281743f5869539b31e294d55acb1abd5aa3a8;p=lhc%2Fweb%2Fwiklou.git Correct fix for the E_NOTICE fixed in r46977. --- 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;