Replaced some hardcoded colons with the colon-separator message
[lhc/web/wiklou.git] / includes / specials / SpecialContributions.php
index 3d8c18d..2d2cd3c 100644 (file)
@@ -353,7 +353,7 @@ class SpecialContributions extends SpecialPage {
 
        protected function feedItemDesc( $revision ) {
                if( $revision ) {
-                       return '<p>' . htmlspecialchars( $revision->getUserText() ) . ': ' .
+                       return '<p>' . htmlspecialchars( $revision->getUserText() ) . wfMsgForContent( 'colon-separator' ) .
                                htmlspecialchars( FeedItem::stripComment( $revision->getComment() ) ) . 
                                "</p>\n<hr />\n<div>" .
                                nl2br( htmlspecialchars( $revision->getText() ) ) . "</div>";