Index: openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl,v diff -u -r1.109.2.4 -r1.109.2.5 --- openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl 9 Sep 2015 14:18:29 -0000 1.109.2.4 +++ openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl 18 Sep 2015 07:33:48 -0000 1.109.2.5 @@ -930,7 +930,7 @@ apm_callback_and_log -severity Error $callback [subst {

Failed to install $version(package-name), version $version(name). The following error was generated:

- [ad_quotehtml $errmsg] + [ns_quotehtml $errmsg]

@@ -1648,7 +1648,7 @@ } errmsg] } { apm_callback_and_log -severity Error $callback "

[string totitle $package_key] not installed.

Error: -

[ad_quotehtml $errmsg]
[ad_quotehtml $::errorInfo]
" +
[ns_quotehtml $errmsg]
[ns_quotehtml $::errorInfo]
" } } } @@ -2250,7 +2250,7 @@ # Interpolate the vars. if {$binds ne ""} { foreach {var val} $binds { - set $var [ad_quotehtml $val] + set $var [ns_quotehtml $val] } if {![info exists Id]} { set Id {$Id} @@ -2652,9 +2652,9 @@ } } else { if {$attribute_name eq ""} { - set xml_string "${indentation}<${element_name}>[ad_quotehtml $value]\n" + set xml_string "${indentation}<${element_name}>[ns_quotehtml $value]\n" } else { - set xml_string "${indentation}<$element_name $attribute_name=\"[ad_quotehtml $value]\"/>\n" + set xml_string "${indentation}<$element_name $attribute_name=\"[ns_quotehtml $value]\"/>\n" } } return $xml_string