Added rfe 9128: Thingy fields subtext and pretext now have max length of 1024.

This commit is contained in:
Yung Han Khoe 2008-12-02 10:04:00 +00:00
parent 47ee55639e
commit 858c9033b9
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1 @@
alter table Thingy_fields change subtext subtext text, change pretext pretext text;

View file

@ -702,12 +702,14 @@ sub getEditFieldForm {
-value=>$field->{pretext},
-label=>$i18n->get('pretext label'),
-hoverHelp=>$i18n->get('pretext description'),
-maxlength=>'1024',
);
$f->text(
-name=>"subtext",
-value=>$field->{subtext},
-label=>$i18n->get('subtext label'),
-hoverHelp=>$i18n->get('subtext description'),
-maxlength=>'1024',
);
$f->selectBox(
-name=>"status",