Add a word separator after the colon separator.
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Fri, 2 Sep 2011 13:14:33 +0000 (13:14 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Fri, 2 Sep 2011 13:14:33 +0000 (13:14 +0000)
includes/specials/SpecialImport.php

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