Index: openacs-4/packages/acs-templating/tcl/util-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/util-procs.tcl,v diff -u -N -r1.28.2.6 -r1.28.2.7 --- openacs-4/packages/acs-templating/tcl/util-procs.tcl 12 Sep 2015 16:56:28 -0000 1.28.2.6 +++ openacs-4/packages/acs-templating/tcl/util-procs.tcl 18 Sep 2015 07:31:49 -0000 1.28.2.7 @@ -625,7 +625,7 @@ Quote possible HTML tags in the contents of the html parameter. } { - return [ad_quotehtml $html] + return [ns_quotehtml $html] } ad_proc -public template::util::multirow_quote_html {multirow_ref column_ref} { @@ -641,7 +641,7 @@ for { set i 1 } { $i <= $rowcount } { incr i} { upvar $multirow_ref:$i arr - set arr($column_ref) [ad_quotehtml [set arr($column_ref)]] + set arr($column_ref) [ns_quotehtml [set arr($column_ref)]] } }