From 79763d905f4e974acb59e1b54bcffc1009b4dc13 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 1 Sep 2006 11:33:23 +0000 Subject: [PATCH] * (bug 7188) Fix minor borkage in HTMLForm --- RELEASE-NOTES | 2 ++ includes/HTMLForm.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 ); } /** -- 2.20.1