* (bug 7188) Fix minor borkage in HTMLForm
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 1 Sep 2006 11:33:23 +0000 (11:33 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 1 Sep 2006 11:33:23 +0000 (11:33 +0000)
RELEASE-NOTES
includes/HTMLForm.php

index b494ff8..b040de2 100644 (file)
@@ -176,6 +176,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 6976) Add namespace and direction classes to classic skins
 * (bug 7144) Don't "return to main" from OutputPage::loginToUse() if the the user can't
   read the main page in the first place
+* (bug 7188) Fix minor borkage in HTMLForm
+
 
 == Languages updated ==
 
index 2f0d995..3ee8585 100644 (file)
@@ -71,7 +71,7 @@ class HTMLForm {
                                ( $checked ? ' checked="checked"' : '' ) . " />" . wfMsg( $this->mName.'-'.$varname.'-'.$value ) .
                                "</label></div>\n";
                }
-               return $this->fieldset( $this->mName.'-'.$varname, $s );
+               return $this->fieldset( $varname, $s );
        }
 
        /**