Adding accesskey="s" to forms in the following special pages:
[lhc/web/wiklou.git] / includes / specials / SpecialExport.php
index 38bfc83..d500785 100644 (file)
@@ -278,7 +278,7 @@ function wfSpecialExport( $page = '' ) {
        //$form .= Xml::checkLabel( wfMsg( 'export-images' ), 'images', 'wpExportImages', false ) . '<br />';
        $form .= Xml::checkLabel( wfMsg( 'export-download' ), 'wpDownload', 'wpDownload', true ) . '<br />';
 
-       $form .= Xml::submitButton( wfMsg( 'export-submit' ) );
+       $form .= Xml::submitButton( wfMsg( 'export-submit' ), array( 'accesskey' => 's' ) );
        $form .= Xml::closeElement( 'form' );
        $wgOut->addHtml( $form );
 }