From c2390164e67fa950fe680e01f72834dfa15469ba Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 25 Feb 2009 05:01:52 +0000 Subject: [PATCH] Remove a dangling double quote in the HTMLForm table inside of the fieldset. --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/HTMLForm.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 07f3423ba..347bd5ce1 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -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. diff --git a/lib/WebGUI/HTMLForm.pm b/lib/WebGUI/HTMLForm.pm index aa7dc06db..79cf31125 100644 --- a/lib/WebGUI/HTMLForm.pm +++ b/lib/WebGUI/HTMLForm.pm @@ -186,7 +186,7 @@ sub fieldSetEnd { my $legend = shift; $self->{_data} .= "\n" ."\n" - ."{_tableExtras}.'" style="width: 100%;">' + ."
{_tableExtras}.' style="width: 100%;">' ."\n"; }