From f5f6616d427416eef1c3181884517c2fc848cb06 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 3 Feb 2010 15:57:54 +0000 Subject: [PATCH] Follow-up r61055: prevent "\n" appearing as text. --- includes/Article.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) ); } } -- 2.20.1