Skip to content

Commit

Permalink
Merge pull request #192 from contao-estatemanager/bugfix/row-size-too…
Browse files Browse the repository at this point in the history
…-large

Field "position" increased to max 64 chars
  • Loading branch information
eki89 authored Oct 31, 2022
2 parents 2564842 + 9cfe1f2 commit 313cbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/contao/dca/tl_contact_person.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
'exclude' => true,
'inputType' => 'text',
'eval' => array('maxlength'=>32, 'tl_class'=>'w50'),
'sql' => "varchar(32) NOT NULL default ''"
'sql' => "varchar(64) NOT NULL default ''"
),
'anrede_brief' => array
(
Expand Down

0 comments on commit 313cbb7

Please sign in to comment.