ad_quotehtml argWhat it does:
Quotes ampersands, double-quotes, and angle brackets in $arg. Analogous to ns_quotehtml except that it quotes double-quotes (which ns_quotehtml does not).Defined in: /web/philip/packages/acs-core/utilities-procs.tcl
Source code:
# we have to do & first or we'll hose ourselves with the ones lower down regsub -all & $arg \\&\; arg regsub -all \" $arg \\"\; arg regsub -all < $arg \\<\; arg regsub -all > $arg \\>\; arg return $arg