From: Aryeh Gregor Date: Sun, 12 Jul 2009 16:58:33 +0000 (+0000) Subject: Fix for r53034: left off \n on doctype X-Git-Tag: 1.31.0-rc.0~40994 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=af2b7c7889a4b37157e7a7444f53ca3af96380cf;p=lhc%2Fweb%2Fwiklou.git Fix for r53034: left off \n on doctype I knew it had to be impossible to change two lines without breaking something. :) --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 3eabf63dfc..f1647a61bc 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1562,7 +1562,7 @@ class OutputPage { } if ( $wgHtml5 ) { - $ret .= ''; + $ret .= "\n"; } else { $ret .= "\n"; }