Skip to content
Snippets Groups Projects
Commit 9a06890d authored by Ludwig Rafelsberger's avatar Ludwig Rafelsberger Committed by Wouter Wolters
Browse files

[TASK] Match SQL field lengths in TCA

This is a follow-up to ee448440, matching the TCA max field-length to
the already increased SQL lenghtes.

Resolves: #76075
Releases: master
Change-Id: Id65f9a87c73d914e221bebfb77d6595c6dd84d48
Reviewed-on: https://review.typo3.org/48033


Reviewed-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Tested-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
parent d7b75d73
Branches
Tags
No related merge requests found
......@@ -74,7 +74,7 @@ return array(
'type' => 'input',
'size' => '40',
'eval' => 'trim',
'max' => '80'
'max' => '160'
)
),
'first_name' => array(
......@@ -123,7 +123,7 @@ return array(
'type' => 'input',
'eval' => 'trim',
'size' => '20',
'max' => '20'
'max' => '30'
)
),
'fax' => array(
......@@ -133,7 +133,7 @@ return array(
'type' => 'input',
'size' => '20',
'eval' => 'trim',
'max' => '20'
'max' => '30'
)
),
'email' => array(
......
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