From: Siebrand Mazeland Date: Fri, 2 Sep 2011 13:16:29 +0000 (+0000) Subject: Revert r96094. That space is already in colon-separator. Should have know and checked... X-Git-Tag: 1.31.0-rc.0~27956 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=ae9e87e898d70d041bbf7719f5c863662703eb17;p=lhc%2Fweb%2Fwiklou.git Revert r96094. That space is already in colon-separator. Should have know and checked earlier. --- 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 ); }