From 8df2c9f6b90d9bfeb21ebdead0fbb90616f7691b Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Thu, 8 Nov 2007 06:33:40 +0000 Subject: [PATCH] fix missing field_loop in SQL Form template --- docs/changelog/7.x.x.txt | 11 ++++++----- lib/WebGUI/Asset/Wobject/SQLForm.pm | 1 - 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 5785b2eac..b339b914d 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -9,11 +9,12 @@ (Diona Kidd, Knowmad Technologies) 7.4.13 -- fix: Calendar doubles backslashes on iCal import -- fix: EMS edit badge event list can display incorrectly in IE -- fix: Expired SessionScratch not deleted (thanks to Michelle Lamar) - http://www.plainblack.com/bugs/tracker/expired-sessionscratch-not-deleted -- fix: Bad import of help template variables from other topics. (perlDreamer Consulting, LLC.) + - fix: field_loop missing from SQL Form template + - fix: Calendar doubles backslashes on iCal import + - fix: EMS edit badge event list can display incorrectly in IE + - fix: Expired SessionScratch not deleted (thanks to Michelle Lamar) + http://www.plainblack.com/bugs/tracker/expired-sessionscratch-not-deleted + - fix: Bad import of help template variables from other topics. (perlDreamer Consulting, LLC.) 7.4.12 - fix: extra empty/grey area at the bottom of pages diff --git a/lib/WebGUI/Asset/Wobject/SQLForm.pm b/lib/WebGUI/Asset/Wobject/SQLForm.pm index c8a29e491..ac341a8ab 100644 --- a/lib/WebGUI/Asset/Wobject/SQLForm.pm +++ b/lib/WebGUI/Asset/Wobject/SQLForm.pm @@ -4359,7 +4359,6 @@ my $sth = $dbLink->db->unconditionalRead($sql); $var->{managementLinks} = $self->_getManagementLinks; # Only process style if search is called directly; - delete $var->{'searchForm.field_loop'}; return $self->processTemplate($var, $self->getValue('searchTemplateId')) unless ($self->session->form->process("func") eq 'superSearch'); return $self->processStyle($self->processTemplate($var, $self->getValue('searchTemplateId'))); }