diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b494ff8de93..b040de20ce3 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/includes/HTMLForm.php b/includes/HTMLForm.php index 2f0d995cdb8..3ee85859c51 100644 --- a/includes/HTMLForm.php +++ b/includes/HTMLForm.php @@ -71,7 +71,7 @@ class HTMLForm { ( $checked ? ' checked="checked"' : '' ) . " />" . wfMsg( $this->mName.'-'.$varname.'-'.$value ) . "\n"; } - return $this->fieldset( $this->mName.'-'.$varname, $s ); + return $this->fieldset( $varname, $s ); } /**