1.. include:: ../../Includes.txt
2
3==================================================================
4Deprecation: #85125 - Deprecate usages of CharsetConverter in core
5==================================================================
6
7See :issue:`85125`
8
9Description
10===========
11
12The following method has been marked as deprecated:
13
14- :php:`TYPO3\CMS\Core\Resource\Driver\AbstractHierarchicalFilesystemDriver->getCharsetConversion()`
15
16The following public properties have been deprecated:
17
18- :php:`TYPO3\CMS\IndexedSearch\Lexer->csObj`
19- :php:`TYPO3\CMS\IndexedSearch\Indexer->csObj`
20
21
22Impact
23======
24
25Calling the method or accessing any of the properties will trigger a PHP :php:`E_USER_DEPRECATED` error.
26
27
28Affected Installations
29======================
30
31TYPO3 Installations with custom FAL drivers or special handling for indexed search extending the
32Lexer functionality.
33
34
35Migration
36=========
37
38Check the extension scanner if the site is affected and instantiate CharsetConverter directly in the
39callers' code.
40
41.. index:: PHP-API, FullyScanned
42