From: Brion Vibber Date: Fri, 1 Sep 2006 11:33:23 +0000 (+0000) Subject: * (bug 7188) Fix minor borkage in HTMLForm X-Git-Tag: 1.31.0-rc.0~55861 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=79763d905f4e974acb59e1b54bcffc1009b4dc13;p=lhc%2Fweb%2Fwiklou.git * (bug 7188) Fix minor borkage in HTMLForm --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b494ff8de9..b040de20ce 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 2f0d995cdb..3ee85859c5 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 ); } /**