From: Antoine Musso Date: Tue, 6 Sep 2005 17:59:17 +0000 (+0000) Subject: html output formatting X-Git-Tag: 1.6.0~1706 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=4158d560a46423a76c0890867e30a5fce008129c;p=lhc%2Fweb%2Fwiklou.git html output formatting --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 7ca2d6b2ff..1fa8ab769c 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1283,7 +1283,7 @@ function wfElementClean( $element, $attribs = array(), $contents = '') { */ function &HTMLnamespaceselector($selected = '', $allnamespaces = null) { global $wgContLang; - $s = "\n\t"; $arr = $wgContLang->getFormattedNamespaces(); if( !is_null($allnamespaces) ) { $arr = array($allnamespaces => wfMsgHtml('namespacesall')) + $arr; @@ -1301,7 +1301,7 @@ function &HTMLnamespaceselector($selected = '', $allnamespaces = null) { $s .= wfElement("option", array("value" => $index), $name); } } - $s .= "\n"; + $s .= "\n\n"; return $s; }