summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/edit.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/bug/edit.html.tmpl')
-rw-r--r--template/en/default/bug/edit.html.tmpl6
1 files changed, 4 insertions, 2 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index e2ce068e4..1f20cdb52 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -157,7 +157,7 @@
<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>
@@ -850,7 +850,8 @@
<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 %]">
@@ -868,6 +869,7 @@
[% size = 0 %]
[% value = undef %]
[% onfocus = undef %]
+ [% spellcheck = undef %]
[% END %]
[%############################################################################%]