Skip to content
Snippets Groups Projects
Commit d1138fda authored by Annett Jähnichen's avatar Annett Jähnichen Committed by Stefan Bürk
Browse files

[TASK] Use preconfigured UTF-8 System in first installation

Back in the old and dark days, some filesystems did not know
about "special" chars. TYPO3 has the TYPO3_CONF_VARS toggle
['SYS']['UTF8filesystem'] to declare if filesytems are
UTF-8 aware.

This toggle is 'false' by default since ever. It triggers
functionality to rename any file that contains characters
like umlauts, or maybe entirely consist of "special" chars
only (japanese) to something "safe".

This is a usability issue since information is lost and
language-specific characters are destroyed.

Nowadays, any serious filesystem of course supports UTF-8.

There are no issues related to UTF8filesystem=true for
years.

The patch now sets UTF8filesystem=true for new installations
to see if anything still pops up. If that works out, we'll
continue with further patches in v13 to further phase out
the option entirely.

Resolves: #98090
Releases: main
Change-Id: Ib448d4f42c23605fd4343bcbbd1f9fdadecadc8b
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75378


Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarSimon Schaufelberger <simonschaufi+typo3@gmail.com>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarSimon Schaufelberger <simonschaufi+typo3@gmail.com>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
parent 9a219cac
Branches
Tags
No related merge requests found
......@@ -23,5 +23,6 @@ return [
'unifiedPageTranslationHandling' => true,
'yamlImportsFollowDeclarationOrder' => true,
],
'UTF8filesystem' => true,
],
];
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