Index: openacs-4/packages/acs-templating/tcl/widget-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/widget-procs.tcl,v diff -u -r1.63.2.11 -r1.63.2.12 --- openacs-4/packages/acs-templating/tcl/widget-procs.tcl 9 Mar 2021 10:11:53 -0000 1.63.2.11 +++ openacs-4/packages/acs-templating/tcl/widget-procs.tcl 11 Mar 2021 13:22:10 -0000 1.63.2.12 @@ -224,11 +224,11 @@ } Can be either a select widget initially if options supplied - or a text box which on submit changes to a select widget. + or a search box which on submit changes to a select widget. @param element_reference Reference variable to the form element @param tag_attributes If the "options" attribute is passed in, a select widget - is created, otherwise a search text box. + is created, otherwise a search box. @return Form HTML for widget @@ -237,8 +237,8 @@ if { ! [info exists element(options)] } { - # initial submission or no data (no options): a text box - set output [input text element $tag_attributes] + # initial submission or no data (no options): a search box + set output [input search element $tag_attributes] } else {