Index: openacs-4/packages/xowiki/tcl/form-field-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/form-field-procs.tcl,v diff -u -r1.248.2.21 -r1.248.2.22 --- openacs-4/packages/xowiki/tcl/form-field-procs.tcl 5 May 2016 11:57:12 -0000 1.248.2.21 +++ openacs-4/packages/xowiki/tcl/form-field-procs.tcl 24 Jun 2016 15:17:24 -0000 1.248.2.22 @@ -504,9 +504,8 @@ # set old_value [my set value] my set value [xo::escape_message_keys $old_value] - ::html::input [my get_attributes type size maxlength id name value \ - pattern placeholder {CSSclass class} {*}$booleanAtts] {} + autocomplete pattern placeholder {CSSclass class} {*}$booleanAtts] {} # # Reset values to original content # @@ -1218,7 +1217,7 @@ } inform instproc render_input {} { ::html::t [my value] - ::html::input [my get_attributes type id name value disabled {CSSclass class}] {} + ::html::input [my get_attributes type id name value disabled autocomplete {CSSclass class}] {} } inform instproc render_help_text {} { } @@ -1376,7 +1375,7 @@ } number instproc render_input {} { ::html::input [my get_attributes type id name value disabled {CSSclass class} min max step value \ - autofocus formnovalidate multiple pattern placeholder readonly required] {} + autofocus autocomplete formnovalidate multiple pattern placeholder readonly required] {} } ########################################################### @@ -1394,7 +1393,7 @@ } range instproc render_input {} { ::html::input [my get_attributes type id name value disabled {CSSclass class} min max step value \ - autofocus formnovalidate multiple pattern placeholder readonly required] {} + autofocus autocomplete formnovalidate multiple pattern placeholder readonly required] {} }