Remove a dangling double quote in the HTMLForm table inside of the fieldset.
This commit is contained in:
parent
ae1d89de3b
commit
c2390164e6
2 changed files with 2 additions and 1 deletions
|
|
@ -12,6 +12,7 @@
|
||||||
- fixed #9803: Survey 2.0- Gradebook spelled wrong
|
- fixed #9803: Survey 2.0- Gradebook spelled wrong
|
||||||
- fixed #9801: Survey 2.0- Template spelled wrong
|
- fixed #9801: Survey 2.0- Template spelled wrong
|
||||||
- fixed #9802: Survey Template field names to be consistent
|
- 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
|
7.6.12
|
||||||
- fixed: During postback on a recurring transaction, the routine could error out instead of catching an error.
|
- fixed: During postback on a recurring transaction, the routine could error out instead of catching an error.
|
||||||
|
|
|
||||||
|
|
@ -186,7 +186,7 @@ sub fieldSetEnd {
|
||||||
my $legend = shift;
|
my $legend = shift;
|
||||||
$self->{_data} .= "</tbody></table>\n"
|
$self->{_data} .= "</tbody></table>\n"
|
||||||
."</fieldset>\n"
|
."</fieldset>\n"
|
||||||
."<table ".$self->{_tableExtras}.'" style="width: 100%;"><tbody>'
|
."<table ".$self->{_tableExtras}.' style="width: 100%;"><tbody>'
|
||||||
."\n";
|
."\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue