From 4158d560a46423a76c0890867e30a5fce008129c Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 6 Sep 2005 17:59:17 +0000 Subject: [PATCH] html output formatting --- includes/GlobalFunctions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.20.1