From 26825240a0cebb9cabc3bcbcc572bd3616c70c1b Mon Sep 17 00:00:00 2001
From: Christian Kuhn <lolli@schwarzbu.ch>
Date: Tue, 18 Jun 2024 11:36:57 +0200
Subject: [PATCH] [TASK] Make pages.author VARCHAR(255)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This was a VARCHAR(255) before #104098, which considers
TCA 'max' property and thus reduced it to VARCHAR(80).
To avoid upgrade issues, 'max' is now increased to 255,
which makes it a VARCHAR(255) again.

Resolves: #104143
Related: #101553
Related: #104098
Releases: main
Change-Id: I96f36ed1259473550ae4bd29b646b1d23f74b706
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84772
Reviewed-by: Stefan Bürk <stefan@buerk.tech>
Tested-by: core-ci <typo3@b13.com>
Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: Oliver Wand <wand@itaw.de>
Reviewed-by: Georg Ringer <georg.ringer@gmail.com>
Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: Georg Ringer <georg.ringer@gmail.com>
Tested-by: Stefan Bürk <stefan@buerk.tech>
---
 typo3/sysext/core/Configuration/TCA/pages.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/core/Configuration/TCA/pages.php b/typo3/sysext/core/Configuration/TCA/pages.php
index fde573c8d2c6..3288e1fbd654 100644
--- a/typo3/sysext/core/Configuration/TCA/pages.php
+++ b/typo3/sysext/core/Configuration/TCA/pages.php
@@ -623,7 +623,7 @@ return [
                 'type' => 'input',
                 'size' => 23,
                 'eval' => 'trim',
-                'max' => 80,
+                'max' => 255,
                 'behaviour' => [
                     'allowLanguageSynchronization' => true,
                 ],
-- 
GitLab