Index: openacs-4/packages/contacts/tcl/contact-search-widget-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/tcl/contact-search-widget-procs.tcl,v diff -u -N -r1.7 -r1.8 --- openacs-4/packages/contacts/tcl/contact-search-widget-procs.tcl 25 Apr 2018 19:47:46 -0000 1.7 +++ openacs-4/packages/contacts/tcl/contact-search-widget-procs.tcl 9 May 2018 15:33:30 -0000 1.8 @@ -154,8 +154,8 @@ error "You cannot use the contact_search widget without specifying a package_id of a contacts instance in which to search (done the same way you would specifiy html attributes)" } } - set person_ids {} - set organization_ids {} + set person_ids [list] + set organization_ids [list] # search in persons if { $persons_p } { @@ -175,7 +175,7 @@ } else { # we need to return a select list - set options {} + set options [list] if { [llength $person_ids] > 0 } { if { [llength $person_ids] > 50 } { set options [list [list [_ contacts.lt_Search_again_over_50_people] ":search:"]]