Index: openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl,v diff -u -r1.189.2.43 -r1.189.2.44 --- openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 12 Dec 2019 10:00:52 -0000 1.189.2.43 +++ openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 16 Dec 2019 17:01:50 -0000 1.189.2.44 @@ -414,13 +414,27 @@ } } -ad_proc -public remove_nulls_from_ns_set { +ad_proc -deprecated remove_nulls_from_ns_set { old_set_id } { Creates and returns a new ns_set without any null value fields + DEPRECATED: does not comply with OpenACS naming convention. + + @see util_remove_nulls_from_ns_set + @return new ns_set } { + return [util_remove_nulls_from_ns_set $old_set_id] +} + +ad_proc -public util_remove_nulls_from_ns_set { + old_set_id +} { + Creates and returns a new ns_set without any null value fields + + @return new ns_set +} { set new_set_id [ns_set new "no_nulls$old_set_id"] for {set i 0} {$i < [ns_set size $old_set_id]} {incr i} {