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 -N -r1.284.2.174 -r1.284.2.175 --- openacs-4/packages/xowiki/tcl/form-field-procs.tcl 21 Oct 2021 08:54:23 -0000 1.284.2.174 +++ openacs-4/packages/xowiki/tcl/form-field-procs.tcl 22 Oct 2021 19:44:44 -0000 1.284.2.175 @@ -3025,7 +3025,9 @@ :render_disabled_as_div textarea } else { set booleanAtts [:booleanAttributes {*}${:booleanHTMLAttributes}] - set spellcheck ${:spellcheck} + if {!${:spellcheck}} { + set :data-gramm false + } if {${:autosave}} { ::html::div -class "autosave" { ::html::div -id ${:id}-status \ @@ -3037,7 +3039,7 @@ } ::html::textarea [:get_attributes id name cols rows style wrap placeholder \ data-repeat-template-id {CSSclass class} spellcheck \ - {*}$booleanAtts] { + data-gramm {*}$booleanAtts] { ::html::t [:value] } }