From af2b7c7889a4b37157e7a7444f53ca3af96380cf Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Sun, 12 Jul 2009 16:58:33 +0000 Subject: [PATCH] Fix for r53034: left off \n on doctype I knew it had to be impossible to change two lines without breaking something. :) --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- 2.20.1