Breaking: #75454 - TYPO3_db Constants removed¶
See forge#75454
Description¶
The PHP constants TYPO3_
, TYPO3_
, TYPO3_
and TYPO3_
which were used when TYPO3 initialized the database connection have been removed.
Impact¶
Checking for or using the mentioned constants may lead to unexpected behavior or errors. If not checked if the constant even was defined, the application will stop immediately.
Affected Installations¶
Any installation which uses a third-party extension using these constants.
Migration¶
Use the configuration data within $GLOBALS
to determine the username, password and host information for the default database connection.