From: Rob Church Date: Fri, 3 Mar 2006 07:27:38 +0000 (+0000) Subject: (bug 5150 and related) Fix missing ID attribute in HTML namespace selector X-Git-Tag: 1.6.0~237 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=1a5a8726a1a22f869841771366cc872c0dc77c3c;p=lhc%2Fweb%2Fwiklou.git (bug 5150 and related) Fix missing ID attribute in HTML namespace selector --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 662abd89cc..8c2c531679 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -674,7 +674,7 @@ fully support the editing toolbar, but was found to be too confusing. * (bug 4273) Bounce back with a message when attempting to submit a new comment with an empty main textbox (user probably hit Enter in subject field) * (bug 5141) Gracefully handle the new account link when createaccount off - +* (bug 5150 and related) Fix missing ID attribute in HTML namespace selector === Caveats === diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 0850cb9b03..215212ec20 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1525,7 +1525,7 @@ function &HTMLnamespaceselector($selected = '', $allnamespaces = null) { $selected = intval( $selected ); } } - $s = "\n\t"; $arr = $wgContLang->getFormattedNamespaces(); if( !is_null($allnamespaces) ) { $arr = array($allnamespaces => wfMsgHtml('namespacesall')) + $arr;