From: Alexandre Emsenhuber Date: Thu, 6 Feb 2014 14:15:42 +0000 (+0100) Subject: Put line breaks after each element in OutputPage::headElement() X-Git-Tag: 1.31.0-rc.0~16967^2 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=f09172d9b843440e9f330b928d031b6ce84abf11;p=lhc%2Fweb%2Fwiklou.git Put line breaks after each element in OutputPage::headElement() Change-Id: I4e7715a354e9d599fb2c77c09ac72a55462aaa5d --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index aff4b16d63..2b1d4a0596 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2510,14 +2510,14 @@ $templates // Our XML declaration is output by Html::htmlHeader. // http://www.whatwg.org/html/semantics.html#attr-meta-http-equiv-content-type // http://www.whatwg.org/html/semantics.html#charset - $ret .= Html::element( 'meta', array( 'charset' => 'UTF-8' ) ); + $ret .= Html::element( 'meta', array( 'charset' => 'UTF-8' ) ) . "\n"; } $ret .= Html::element( 'title', null, $this->getHTMLTitle() ) . "\n"; // Avoid Internet Explorer "compatibility view", so that // jQuery can work correctly. - $ret .= Html::element( 'meta', array( 'http-equiv' => 'X-UA-Compatible', 'content' => 'IE=EDGE' ) ); + $ret .= Html::element( 'meta', array( 'http-equiv' => 'X-UA-Compatible', 'content' => 'IE=EDGE' ) ) . "\n"; $ret .= implode( "\n", array( $this->getHeadLinks(),