From fd62d7fdfafff4d068b460985b9edc8b774d0279 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 9 Apr 2010 07:16:12 +0000 Subject: [PATCH] Fix for r61055: single-quoted strings doesn't replace \n with newlines :) --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index eec5620b93..38b3ef3baa 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1911,7 +1911,7 @@ class OutputPage { // Wiki is read only $this->setPageTitle( wfMsg( 'readonly' ) ); $reason = wfReadOnlyReason(); - $this->wrapWikiMsg( '
\n$1
', array( 'readonlytext', $reason ) ); + $this->wrapWikiMsg( "
\n$1
", array( 'readonlytext', $reason ) ); } // Show source, if supplied -- 2.20.1