http://www.mediawiki.org/wiki/Special:Code/MediaWiki/96094
Revision: 96094
Author: siebrand
Date: 2011-09-02 13:14:33 +0000 (Fri, 02 Sep 2011)
Log Message:
-----------
Add a word separator after the colon separator.
Modified Paths:
--------------
trunk/phase3/includes/specials/SpecialImport.php
Modified: trunk/phase3/includes/specials/SpecialImport.php
===================================================================
--- trunk/phase3/includes/specials/SpecialImport.php 2011-09-02 12:56:56 UTC
(rev 96093)
+++ trunk/phase3/includes/specials/SpecialImport.php 2011-09-02 13:14:33 UTC
(rev 96094)
@@ -366,7 +366,8 @@
$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 @@
$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 );
}
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs