From 4bb02cdc3310e2f14a5b0cbb419a2ebd39a48a0a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sun, 17 May 2009 15:44:51 +0000 Subject: [PATCH] * Follow-up for r50691, add \n to be safe in case there is line-start sensitive markup --- includes/ProtectionForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ProtectionForm.php b/includes/ProtectionForm.php index 48d987d017..ce7bf54bd1 100644 --- a/includes/ProtectionForm.php +++ b/includes/ProtectionForm.php @@ -192,7 +192,7 @@ class ProtectionForm { $titles .= '* [[:' . $title->getPrefixedText() . "]]\n"; } - $wgOut->wrapWikiMsg( "
$1\n" . $titles . "
", array( 'protect-cascadeon', count($cascadeSources) ) ); + $wgOut->wrapWikiMsg( "
\n$1\n" . $titles . "
", array( 'protect-cascadeon', count($cascadeSources) ) ); } $sk = $wgUser->getSkin(); -- 2.20.1