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.83 -r1.84
--- openacs-4/packages/acs-tcl/tcl/defs-procs.tcl 11 Sep 2024 06:15:48 -0000 1.83
+++ openacs-4/packages/acs-tcl/tcl/defs-procs.tcl 28 Dec 2024 15:39:56 -0000 1.84
@@ -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
}