Commit c64160f5 authored by guy.pyrzak%gmail.com's avatar guy.pyrzak%gmail.com

Bug 455558: Custom free text fields too long (particularly in Dusk)

Patch by Guy Pyrzak <guy.pyrzak@gmail.com> r=Lpsolit, a=mkanat
parent 87282073
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
[% SWITCH field.type %] [% SWITCH field.type %]
[% CASE constants.FIELD_TYPE_FREETEXT %] [% CASE constants.FIELD_TYPE_FREETEXT %]
<input id="[% field.name FILTER html %]" name="[% field.name FILTER html %]" <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 %]"> maxlength="[% constants.MAX_FREETEXT_LENGTH FILTER none %]">
[% CASE constants.FIELD_TYPE_DATETIME %] [% CASE constants.FIELD_TYPE_DATETIME %]
<input name="[% field.name FILTER html %]" size="20" <input name="[% field.name FILTER html %]" size="20"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment