Skip to content
Snippets Groups Projects
Commit fc222e1e authored by Stephan Großberndt's avatar Stephan Großberndt Committed by Alexander Opitz
Browse files

[BUGFIX] Use integers in TCA definitions

Releases: master
Resolves: #83380
Change-Id: Ic90db1b6ee239841586ab100be6d8d312a94e859
Reviewed-on: https://review.typo3.org/55152


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarMathias Schreiber <mathias.schreiber@typo3.com>
Tested-by: default avatarMathias Schreiber <mathias.schreiber@typo3.com>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarAlexander Opitz <opitz.alexander@googlemail.com>
Tested-by: default avatarAlexander Opitz <opitz.alexander@googlemail.com>
parent 64ac2bdb
Branches
Tags
No related merge requests found
......@@ -45,7 +45,7 @@ return [
'type' => 'text',
'rows' => 5,
'cols' => 30,
'max' => '2000',
'max' => 2000
]
],
'base' => [
......
......@@ -154,7 +154,7 @@ return [
'type' => 'input',
'size' => 20,
'eval' => 'trim',
'max' => '40'
'max' => 40
]
],
'zip' => [
......@@ -164,7 +164,7 @@ return [
'type' => 'input',
'eval' => 'trim',
'size' => 10,
'max' => '10'
'max' => 10
]
],
'city' => [
......
......@@ -81,7 +81,7 @@ return [
'config' => [
'type' => 'input',
'size' => 25,
'max' => '10',
'max' => 10,
'eval' => 'trim'
]
],
......
......@@ -50,7 +50,7 @@ return [
'config' => [
'type' => 'text',
'cols' => 40,
'rows' => '15'
'rows' => 15
]
],
'personal' => [
......
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