From 4e7d863b8f775a76a34d551a6a2f0ad55a22034e Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 23 Sep 2004 18:27:00 +0000 Subject: [PATCH] fixed some hidden form tag problems --- docs/changelog/6.x.x.txt | 2 ++ lib/WebGUI/Form.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 650bca502..bf723b9e0 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -6,6 +6,8 @@ to static files. - Added a warning to the Passive Profiling feature that it may be illegal to use that feature in some countries. + - Fixed a problem where hidden form tags were not escaping macros properly. + - Fixed an XHTML problem with hidden form tags. 6.2.4 diff --git a/lib/WebGUI/Form.pm b/lib/WebGUI/Form.pm index 1c8af8dc2..a5e896910 100644 --- a/lib/WebGUI/Form.pm +++ b/lib/WebGUI/Form.pm @@ -858,7 +858,7 @@ The default value for this form element. =cut sub hidden { - return ''."\n"; + return ''."\n"; }