Index: openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl,v diff -u -N -r1.50.2.2 -r1.50.2.3 --- openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl 10 Sep 2015 08:21:25 -0000 1.50.2.2 +++ openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl 18 Sep 2015 07:41:03 -0000 1.50.2.3 @@ -356,9 +356,9 @@ # Loop over and write the messages to the file set message_count "0" foreach message_key $message_key_list { - puts $catalog_file_id " [ad_quotehtml $messages_array($message_key)]" + puts $catalog_file_id " [ns_quotehtml $messages_array($message_key)]" if { ([info exists descriptions_array($message_key)] && $descriptions_array($message_key) ne "") && $filename_info(locale) eq "en_US" } { - puts $catalog_file_id " [ad_quotehtml $descriptions_array($message_key)]\n" + puts $catalog_file_id " [ns_quotehtml $descriptions_array($message_key)]\n" } incr message_count }