From c0d73574294e37a4767a7931874c6f0302b26a78 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Fri, 29 May 2009 20:22:08 +0000 Subject: [PATCH] fixed: Template parser cannot be set --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Asset/Template.pm | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 63d8fe7ce..ae02fa002 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,5 +1,6 @@ 7.7.9 - fixed: Reverted bugfix for 10409 and changed the hover help to reflect the correct way to build list-type form controls in the MetaData. + - fixed: Template parser cannot be set 7.7.8 - fixed: Basic Auth doesn't work if password contains colon (Arjan Widlak, diff --git a/lib/WebGUI/Asset/Template.pm b/lib/WebGUI/Asset/Template.pm index 588f2daf6..0afbf6a08 100644 --- a/lib/WebGUI/Asset/Template.pm +++ b/lib/WebGUI/Asset/Template.pm @@ -619,6 +619,10 @@ sub processPropertiesFromFormPost { $data{extraHeadTags} = ''; } + if ($needsUpdate) { + $self->update(\%data); + } + ### Template attachments my $f = $self->session->form; my $p = $f->paramsHashRef;