Skip to content

Commit

Permalink
[TASK] Increase title length of filemount
Browse files Browse the repository at this point in the history
Increase length of sys_filemount.title from 30 to 255 characters.

Resolves: #50979
Releases: master, 8.7
Change-Id: I37fc5a7877073bdfa485adb3d25dc8f2bd9b76ff
Reviewed-on: https://review.typo3.org/56661
Tested-by: TYPO3com <no-reply@typo3.com>
Tested-by: Riccardo De Contardi <erredeco@gmail.com>
Reviewed-by: Frans Saris <franssaris@gmail.com>
Tested-by: Frans Saris <franssaris@gmail.com>
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Tested-by: Wouter Wolters <typo3@wouterwolters.nl>
  • Loading branch information
brandung-gs authored and wouter90 committed Apr 15, 2018
1 parent fe1892c commit 54b081e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions typo3/sysext/core/Configuration/TCA/sys_filemounts.php
Expand Up @@ -28,8 +28,8 @@
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_tca.xlf:sys_filemounts.title',
'config' => [
'type' => 'input',
'size' => 20,
'max' => 30,
'size' => 50,
'max' => 255,
'eval' => 'required,trim'
]
],
Expand Down
2 changes: 1 addition & 1 deletion typo3/sysext/core/ext_tables.sql
Expand Up @@ -224,7 +224,7 @@ CREATE TABLE sys_filemounts (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
title varchar(30) DEFAULT '' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
description varchar(2000) DEFAULT '' NOT NULL,
path varchar(255) DEFAULT '' NOT NULL,
base int(11) unsigned DEFAULT '0' NOT NULL,
Expand Down

0 comments on commit 54b081e

Please sign in to comment.