From 61103de7f1fde601c0952214d0a42b6214e9433f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Tue, 21 Jun 2005 00:27:52 +0000 Subject: [PATCH] * Removed

being passed to addWikiTexT(), the parser will add that anyway * Using wfMsg's instead of hardcoded strings --- includes/SpecialImport.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SpecialImport.php b/includes/SpecialImport.php index ef27e6d89c..820c08dcad 100644 --- a/includes/SpecialImport.php +++ b/includes/SpecialImport.php @@ -75,10 +75,10 @@ function wfSpecialImport( $page = '' ) { $action = $wgTitle->escapeLocalUrl( 'action=submit' ); if( $wgUser->isAllowed( 'importupload' ) ) { - $wgOut->addWikiText( "

" . wfMsg( "importtext" ) . "

" ); + $wgOut->addWikiText( wfMsg( "importtext" ) ); $wgOut->addHTML( "
- Upload XML + " . wfMsg('upload') . "
@@ -97,7 +97,7 @@ function wfSpecialImport( $page = '' ) { if( !empty( $wgImportSources ) ) { $wgOut->addHTML( "
- Interwiki import + " . wfMsg('importinterwiki') . " -- 2.20.1