From: Siebrand Mazeland Date: Wed, 3 Feb 2010 15:57:54 +0000 (+0000) Subject: Follow-up r61055: prevent "\n" appearing as text. X-Git-Tag: 1.31.0-rc.0~37950 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=f5f6616d427416eef1c3181884517c2fc848cb06;p=lhc%2Fweb%2Fwiklou.git Follow-up r61055: prevent "\n" appearing as text. --- diff --git a/includes/Article.php b/includes/Article.php index 8168024510..f575df1420 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -1215,7 +1215,7 @@ class Article { $id = User::idFromName( $rootPart ); $ip = User::isIP( $rootPart ); if ( $id == 0 && !$ip ) { # User does not exist - $wgOut->wrapWikiMsg( '
\n$1
', + $wgOut->wrapWikiMsg( "
\n\$1
", array( 'userpage-userdoesnotexist-view', $rootPart ) ); } }