* Follow-up for r50691, add \n to be safe in case there is line-start sensitive markup

This commit is contained in:
Niklas Laxström 2009-05-17 15:44:51 +00:00
parent 1f4160caa1
commit 4bb02cdc33

View file

@ -192,7 +192,7 @@ class ProtectionForm {
$titles .= '* [[:' . $title->getPrefixedText() . "]]\n";
}
$wgOut->wrapWikiMsg( "<div id=\"mw-protect-cascadeon\">$1\n" . $titles . "</div>", array( 'protect-cascadeon', count($cascadeSources) ) );
$wgOut->wrapWikiMsg( "<div id=\"mw-protect-cascadeon\">\n$1\n" . $titles . "</div>", array( 'protect-cascadeon', count($cascadeSources) ) );
}
$sk = $wgUser->getSkin();