Index: openacs-4/packages/acs-tcl/tcl/defs-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/defs-procs.tcl,v diff -u -r1.81.2.31 -r1.81.2.32 --- openacs-4/packages/acs-tcl/tcl/defs-procs.tcl 14 Aug 2024 11:57:33 -0000 1.81.2.31 +++ openacs-4/packages/acs-tcl/tcl/defs-procs.tcl 27 Dec 2024 17:31:46 -0000 1.81.2.32 @@ -840,10 +840,16 @@ } { Ends the progress bar by causing the browser to redirect to a new URL. + @param url must be a properly encoded URL, such as returned by "export_vars" + @see ad_progress_bar_begin } { util_user_message -message $message_after_redirect - ns_write "" + # + # Using "ns_quotehtml" on the URL leads to overquoting, e.g., when running the + # the end of install-from-repository. + # + ns_write "" ns_conn close }