From ae9e87e898d70d041bbf7719f5c863662703eb17 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 2 Sep 2011 13:16:29 +0000 Subject: [PATCH] Revert r96094. That space is already in colon-separator. Should have know and checked earlier. --- includes/specials/SpecialImport.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/includes/specials/SpecialImport.php b/includes/specials/SpecialImport.php index a89a75cc10..d964b9361a 100644 --- a/includes/specials/SpecialImport.php +++ b/includes/specials/SpecialImport.php @@ -366,8 +366,7 @@ class ImportReporter { $detail = wfMsgExt( 'import-logentry-upload-detail', array( 'content', 'parsemag' ), $contentCount ); if ( $this->reason ) { - $detail .= wfMsgForContent( 'colon-separator' ) . wfMsgForContent( 'word-separator' ); - $detail .= $this->reason; + $detail .= wfMsgForContent( 'colon-separator' ) . $this->reason; } $log->addEntry( 'upload', $title, $detail ); } else { @@ -376,8 +375,7 @@ class ImportReporter { $detail = wfMsgExt( 'import-logentry-interwiki-detail', array( 'content', 'parsemag' ), $contentCount, $interwiki ); if ( $this->reason ) { - $detail .= wfMsgForContent( 'colon-separator' ) . wfMsgForContent( 'word-separator' ); - $detail .= $this->reason; + $detail .= wfMsgForContent( 'colon-separator' ) . $this->reason; } $log->addEntry( 'interwiki', $title, $detail ); } -- 2.20.1