Index: openacs-4/packages/acs-templating/tcl/form-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/form-procs.tcl,v diff -u -r1.32 -r1.32.6.1 --- openacs-4/packages/acs-templating/tcl/form-procs.tcl 28 Feb 2005 01:28:25 -0000 1.32 +++ openacs-4/packages/acs-templating/tcl/form-procs.tcl 13 Feb 2007 08:23:25 -0000 1.32.6.1 @@ -524,6 +524,28 @@ append output ">" + ### 2/11/2007 + ### Adding Form Fieldset legend and attributes + if { [info exists properties(fieldset)] } { + # Fieldset + append output " " + + # Legend + set fieldset_legend [lindex $fieldset_list 1] + if {![empty_string_p $fieldset_legend]} { + append output "$fieldset_legend" + } + + } else { + append output "
" + } + # Export form ID and current form mode append output [export_vars -form { { form\:id $id } { form\:mode $properties(mode) } }]