Revert r96094. That space is already in colon-separator. Should have know and checked...
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Fri, 2 Sep 2011 13:16:29 +0000 (13:16 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Fri, 2 Sep 2011 13:16:29 +0000 (13:16 +0000)
includes/specials/SpecialImport.php

index a89a75c..d964b93 100644 (file)
@@ -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 );
                        }