Index: openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl,v diff -u -N -r1.109.2.8 -r1.109.2.9 --- openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 5 Oct 2019 12:57:36 -0000 1.109.2.8 +++ openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 1 Nov 2019 13:16:18 -0000 1.109.2.9 @@ -271,7 +271,7 @@ -ad_proc -public ad_quotehtml { arg } { +ad_proc -deprecated -public ad_quotehtml { arg } { Quotes ampersands, double-quotes, and angle brackets in $arg. Analogous to ns_quotehtml except that it quotes double-quotes @@ -283,9 +283,9 @@ } ad_proc -public ad_unquotehtml {arg} { - reverses ad_quotehtml + reverses ns_quotehtml - @see ad_quotehtml + @see ns_quotehtml } { return [string map {& & > > < < " \" " \" ' '} $arg] }