From ed33f79e73a113c618235779dacc8d4de4f8c9cc Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 2 Sep 2011 13:14:33 +0000 Subject: [PATCH] Add a word separator after the colon separator. --- includes/specials/SpecialImport.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/specials/SpecialImport.php b/includes/specials/SpecialImport.php index d964b9361a..a89a75cc10 100644 --- a/includes/specials/SpecialImport.php +++ b/includes/specials/SpecialImport.php @@ -366,7 +366,8 @@ class ImportReporter { $detail = wfMsgExt( 'import-logentry-upload-detail', array( 'content', 'parsemag' ), $contentCount ); if ( $this->reason ) { - $detail .= wfMsgForContent( 'colon-separator' ) . $this->reason; + $detail .= wfMsgForContent( 'colon-separator' ) . wfMsgForContent( 'word-separator' ); + $detail .= $this->reason; } $log->addEntry( 'upload', $title, $detail ); } else { @@ -375,7 +376,8 @@ class ImportReporter { $detail = wfMsgExt( 'import-logentry-interwiki-detail', array( 'content', 'parsemag' ), $contentCount, $interwiki ); if ( $this->reason ) { - $detail .= wfMsgForContent( 'colon-separator' ) . $this->reason; + $detail .= wfMsgForContent( 'colon-separator' ) . wfMsgForContent( 'word-separator' ); + $detail .= $this->reason; } $log->addEntry( 'interwiki', $title, $detail ); } -- 2.20.1