diff options
author | guy.pyrzak%gmail.com <> | 2008-09-19 01:51:16 +0200 |
---|---|---|
committer | guy.pyrzak%gmail.com <> | 2008-09-19 01:51:16 +0200 |
commit | c64160f55ae42aeb804b4613f980a57ecc077bdc (patch) | |
tree | 0b6bb1505afc33816433c3fa603d34861e61b532 /template/en/default | |
parent | 87282073416ff345ded57f74cf4882632ad74bfe (diff) | |
download | bugzilla-c64160f55ae42aeb804b4613f980a57ecc077bdc.tar.gz bugzilla-c64160f55ae42aeb804b4613f980a57ecc077bdc.tar.xz |
Bug 455558: Custom free text fields too long (particularly in Dusk)
Patch by Guy Pyrzak <guy.pyrzak@gmail.com> r=Lpsolit, a=mkanat
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/field.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/field.html.tmpl b/template/en/default/bug/field.html.tmpl index b7fdd4291..39f69cfd2 100644 --- a/template/en/default/bug/field.html.tmpl +++ b/template/en/default/bug/field.html.tmpl @@ -43,7 +43,7 @@ [% SWITCH field.type %] [% CASE constants.FIELD_TYPE_FREETEXT %] <input id="[% field.name FILTER html %]" name="[% field.name FILTER html %]" - value="[% value FILTER html %]" size="60" + value="[% value FILTER html %]" size="40" maxlength="[% constants.MAX_FREETEXT_LENGTH FILTER none %]"> [% CASE constants.FIELD_TYPE_DATETIME %] <input name="[% field.name FILTER html %]" size="20" |