Remove a dangling double quote in the HTMLForm table inside of the fieldset.

This commit is contained in:
Colin Kuskie 2009-02-25 05:01:52 +00:00
parent ae1d89de3b
commit c2390164e6
2 changed files with 2 additions and 1 deletions

View file

@ -12,6 +12,7 @@
- fixed #9803: Survey 2.0- Gradebook spelled wrong
- fixed #9801: Survey 2.0- Template spelled wrong
- fixed #9802: Survey Template field names to be consistent
- fixed: HTMLForm generated forms have an extra double quote in the table tag.
7.6.12
- fixed: During postback on a recurring transaction, the routine could error out instead of catching an error.

View file

@ -186,7 +186,7 @@ sub fieldSetEnd {
my $legend = shift;
$self->{_data} .= "</tbody></table>\n"
."</fieldset>\n"
."<table ".$self->{_tableExtras}.'" style="width: 100%;"><tbody>'
."<table ".$self->{_tableExtras}.' style="width: 100%;"><tbody>'
."\n";
}