Remove another double quote in HTMLForm.

This commit is contained in:
Colin Kuskie 2009-02-26 05:49:22 +00:00
parent 0828ecfef5
commit 69b678b9c0

View file

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