Index: openacs-4/packages/xotcl-core/tcl/context-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/context-procs.tcl,v diff -u -r1.33 -r1.34 --- openacs-4/packages/xotcl-core/tcl/context-procs.tcl 13 Mar 2008 12:06:36 -0000 1.33 +++ openacs-4/packages/xotcl-core/tcl/context-procs.tcl 19 Mar 2008 11:35:56 -0000 1.34 @@ -378,6 +378,9 @@ if {[ns_conn isconnected]} { #array set form_parameter [ns_set array [ns_getform]] foreach {att value} [ns_set array [ns_getform]] { + # For some unknown reasons, Safari 3.* returns sometimes + # entries with empty names... We ignore these for now + if {$att eq ""} continue if {[info exists form_parameter($att)]} { my set form_parameter_multiple($att) 1 }