Added rfe 9128: Thingy fields subtext and pretext now have max length of 1024.
This commit is contained in:
parent
47ee55639e
commit
858c9033b9
2 changed files with 3 additions and 0 deletions
1
docs/upgrades/rfe-9128.sql
Normal file
1
docs/upgrades/rfe-9128.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
alter table Thingy_fields change subtext subtext text, change pretext pretext text;
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue