Skip to content
Snippets Groups Projects
Commit 261e1a40 authored by Andreas Fernandez's avatar Andreas Fernandez Committed by Christian Kuhn
Browse files

[BUGFIX] Remove maxitems constraint from be_groups.pagetypes_select

The field be_groups.pagetypes_select is of type TEXT, which can contain
data of a maximum of 64 kilobytes. This patch removes the maxitems
constraint pinned to 20 items as a page type identifier usually is a few
bytes long.

Resolves: #93728
Releases: master, 10.4
Change-Id: I88ea4bb84eb054b22ed00e30f0a95dd4cd1e7375
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/68373


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarGuido Schmechel <guido.schmechel@brandung.de>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: default avatarGuido Schmechel <guido.schmechel@brandung.de>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent d10aedc4
Branches
Tags
No related merge requests found
......@@ -121,7 +121,6 @@ return [
],
]
],
'pagetypes_select' => [
'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:be_groups.pagetypes_select',
'config' => [
......@@ -130,7 +129,6 @@ return [
'special' => 'pagetypes',
'size' => 5,
'autoSizeMax' => 50,
'maxitems' => 20,
]
],
'tables_modify' => [
......
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