From b605f04ef9f32fe215a49f4c7ae6dc48af120f1a Mon Sep 17 00:00:00 2001 From: Ilmari Karonen Date: Sun, 2 Jul 2006 18:42:58 +0000 Subject: [PATCH] fix breakage from r15226 --- includes/XmlFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/XmlFunctions.php b/includes/XmlFunctions.php index 7bb2895aaa..64e349f24d 100644 --- a/includes/XmlFunctions.php +++ b/includes/XmlFunctions.php @@ -16,7 +16,7 @@ function wfCloseElement( $element ) { return ""; } function &HTMLnamespaceselector($selected = '', $allnamespaces = null, $includehidden=false) { - return Xml::namespaceSelector( $selected = '', $allnamespaces = null, $includehidden=false ); + return Xml::namespaceSelector( $selected, $allnamespaces, $includehidden ); } function wfSpan( $text, $class, $attribs=array() ) { return Xml::span( $text, $class, $attribs ); -- 2.20.1