* (bug 7188) Fix minor borkage in HTMLForm

This commit is contained in:
Brion Vibber 2006-09-01 11:33:23 +00:00
parent f849561dd6
commit 79763d905f
2 changed files with 3 additions and 1 deletions

View 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 ==

View 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 );
}
/**