From 419ce8ba63a0b14925c5208ba0fbd94620600a0e Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Tue, 24 Nov 2009 21:25:47 +0000 Subject: [PATCH] Use 'word-separator' message rather than harcoded space --- includes/Article.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Article.php b/includes/Article.php index 3fb548a4bc..a8813e4495 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2605,8 +2605,8 @@ class Article { $skin = $wgUser->getSkin(); $revisions = $this->estimateRevisionCount(); $wgOut->addHTML( '' . - wfMsgExt( 'historywarning', array( 'parseinline' ), $wgLang->formatNum( $revisions ) ) .' ' . - $skin->historyLink() . + wfMsgExt( 'historywarning', array( 'parseinline' ), $wgLang->formatNum( $revisions ) ) . + wfMsgHtml( 'word-separator' ) . $skin->historyLink() . '' ); if( $bigHistory ) { -- 2.20.1