Index: openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl,v diff -u -r1.29.2.25 -r1.29.2.26 --- openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl 23 Aug 2022 18:44:55 -0000 1.29.2.25 +++ openacs-4/packages/acs-tcl/tcl/deprecated-procs.tcl 26 Aug 2022 13:00:49 -0000 1.29.2.26 @@ -4347,7 +4347,26 @@ # return [util_memoize [list db_list db_type_keys {select db_type_key from apm_package_db_types}]] } +ad_proc -deprecated ad_parameter_all_values_as_list { + {-package_id ""} + name {subsection ""} +} { + Returns multiple values for a parameter as a list. + + DEPRECATED: this proc does not do much that joining a string + coming from a parameter, which does not make an invalid string + into a list. Best to take the value from the parameter directly + and rely on proper quoting by the user. Furthermore, the + 'subsection' argument is not used anywhere. + + @see parameter::get + @see join + +} { + return [join [parameter::get -package_id $package_id -parameter $name ] " "] +} + ######################################################################## # Functions based on undefined code ########################################################################