Index: openacs-4/packages/oacs-dav/tcl/tDAV-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/oacs-dav/tcl/tDAV-procs.tcl,v diff -u -r1.20 -r1.21 --- openacs-4/packages/oacs-dav/tcl/tDAV-procs.tcl 3 Sep 2024 15:37:39 -0000 1.20 +++ openacs-4/packages/oacs-dav/tcl/tDAV-procs.tcl 13 Nov 2024 08:42:39 -0000 1.21 @@ -1642,9 +1642,12 @@ if { "" ne $tdav_shares } { foreach s [ns_set keys $tdav_shares] { set tdav_share [ns_configsection "ns/server/[ns_info server]/tdav/share/$s"] - tdav::apply_filters [ns_set get $tdav_share uri] [ns_set get $tdav_share options] [ns_set get $tdav_share enablefilesystem] + tdav::apply_filters \ + [ns_set iget $tdav_share uri] \ + [ns_set iget $tdav_share options] \ + [ns_set iget $tdav_share enablefilesystem] # uncomment the next line if you are using ns_perm authentication - # tdav::allow_group [ns_set get $tdav_share uri] tdav + # tdav::allow_group [ns_set iget $tdav_share uri] tdav } } }