From: Niklas Laxström Date: Sun, 17 May 2009 15:44:51 +0000 (+0000) Subject: * Follow-up for r50691, add \n to be safe in case there is line-start sensitive markup X-Git-Tag: 1.31.0-rc.0~41772 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=4bb02cdc3310e2f14a5b0cbb419a2ebd39a48a0a;p=lhc%2Fweb%2Fwiklou.git * Follow-up for r50691, add \n to be safe in case there is line-start sensitive markup --- 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();