From: Alexandre Emsenhuber Date: Tue, 24 Nov 2009 21:25:47 +0000 (+0000) Subject: Use 'word-separator' message rather than harcoded space X-Git-Tag: 1.31.0-rc.0~38717 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=419ce8ba63a0b14925c5208ba0fbd94620600a0e;p=lhc%2Fweb%2Fwiklou.git Use 'word-separator' message rather than harcoded space --- 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 ) {