Fix regression in regression fix
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 15 Aug 2006 18:31:45 +0000 (18:31 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 15 Aug 2006 18:31:45 +0000 (18:31 +0000)
includes/SpecialExport.php

index e3ba023..a402b65 100644 (file)
@@ -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;