Index: openacs-4/packages/acs-tcl/tcl/form-processing-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/form-processing-procs.tcl,v diff -u -r1.87.2.3 -r1.87.2.4 --- openacs-4/packages/acs-tcl/tcl/form-processing-procs.tcl 25 Apr 2019 19:21:04 -0000 1.87.2.3 +++ openacs-4/packages/acs-tcl/tcl/form-processing-procs.tcl 25 Apr 2019 19:24:24 -0000 1.87.2.4 @@ -1144,7 +1144,7 @@ template::element set_error \ $form_name \ $element_name \ - [util::var_subst_quotehtml -level 2 $error_message] + [util::var_subst_quotehtml -ulevel 2 $error_message] } } } Index: openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl,v diff -u -r1.189.2.13 -r1.189.2.14 --- openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 25 Apr 2019 19:21:04 -0000 1.189.2.13 +++ openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 25 Apr 2019 19:24:24 -0000 1.189.2.14 @@ -4069,7 +4069,7 @@ } ad_proc -public util::var_subst_quotehtml { - {-level 1} + {-ulevel 1} string } { @@ -4099,7 +4099,7 @@ # # Finallly, "subst" the result. # - return [uplevel $level [list ::subst $result]] + return [uplevel $ulevel [list ::subst $result]] }