Skip to content
Snippets Groups Projects
Commit 1943f86c authored by Stefan Bürk's avatar Stefan Bürk
Browse files

[BUGFIX] Allow file links in siteConfiguration/static-route

During the migration to the specific TCA type `link`
with #97159 the allowed link types for the field in
the siteConfiguration->static-routes have been added
incorrectly.

This change re-adds the file link-type as allowed
link type to that field.

Resolves: #101837
Related: #97159
Releases: main, 12.4
Change-Id: Iee40a86fe115749482c2aa0faa2c887adb4d025b
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/80847


Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
parent 259c97cf
Branches
Tags
No related merge requests found
...@@ -61,7 +61,7 @@ Allow: /typo3/sysext/frontend/Resources/Public/* ...@@ -61,7 +61,7 @@ Allow: /typo3/sysext/frontend/Resources/Public/*
'config' => [ 'config' => [
'type' => 'link', 'type' => 'link',
'required' => true, 'required' => true,
'allowedTypes' => ['page', 'url', 'record'], 'allowedTypes' => ['page', 'url', 'record', 'file'],
], ],
], ],
], ],
......
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