Bug #87576
closedFile Storage `name` field is needlessly very short (30 characters)
100%
Description
TCA for sys_file_storage:
'name' => [
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_tca.xlf:sys_file_storage.name',
'config' => [
'type' => 'input',
'size' => 30,
'eval' => 'required'
]
],
in comparison, Filemounts have a sane title length:
'title' => [
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_tca.xlf:sys_filemounts.title',
'config' => [
'type' => 'input',
'size' => 50,
'max' => 255,
'eval' => 'required,trim'
]
],
There is absolutely no reason to have a storage name field of such a short length! (If you can come up with any - please enlighten me.)
When using FAL secure storages ("Access > Publicly available?" = NO), optionally with EXT:fal_securedownload, then 30 characters quickly become too short if you have a multi-word site title and want to add e.g. "(secure)" to the name.
In any case, 30 characters is short for no reason, and fixing it is a no-brainer.
Updated by Georg Ringer almost 6 years ago
- Category changed from File Abstraction Layer (FAL) to Backend User Interface
- Status changed from New to Accepted
- Assignee set to Georg Ringer
This won't be fixed in 8 anymore but with 2 files and 5min time you can fix that with e.g. our site package extension.
Updated by Gerrit Code Review almost 6 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/59581
Updated by Gerrit Code Review almost 6 years ago
Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/59587
Updated by Georg Ringer almost 6 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 14a1fdc951b5fb931b3f568ee263253140a7f314.