From: Brion Vibber Date: Tue, 15 Aug 2006 18:31:45 +0000 (+0000) Subject: Fix regression in regression fix X-Git-Tag: 1.31.0-rc.0~55984 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=066c55dcc92224d77e59eaa97a0fed5209bb3d40;p=lhc%2Fweb%2Fwiklou.git Fix regression in regression fix --- 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;