</td>
<td valign="top">
<input type="text" size="80" name="short_desc" id="short_desc"
- maxlength="255">
+ maxlength="255" spellcheck="true">
<p>
A sentence which summarises the problem.
Please be descriptive and use lots of keywords.
<label for="short_desc" accesskey="s"><b><u>S</u>ummary</b></label>:
</td>
[% PROCESS input inputname => "short_desc" size => "60" colspan => 2
- maxlength => 255 %]
+ maxlength => 255 spellcheck => "true" %]
</tr>
<tr>
<input id="[% inputname %]" name="[% inputname %]"
value="[% val FILTER html %]"[% " size=\"$size\"" IF size %]
[% " maxlength=\"$maxlength\"" IF maxlength %]
- [% " onfocus=\"$onfocus\"" IF onfocus %]>
+ [% " onfocus=\"$onfocus\"" IF onfocus %]
+ [% " spellcheck=\"$spellcheck\"" IF spellcheck %]>
[% ELSE %]
<input type="hidden" name="[% inputname %]" id="[% inputname %]"
value="[% val FILTER html %]">
[% size = 0 %]
[% value = undef %]
[% onfocus = undef %]
+ [% spellcheck = undef %]
[% END %]
[%############################################################################%]