Breaking: #72368 - TYPO3 Constants removed
See forge#72368
Description
The PHP constants TYPO3_
and TYPO3_
and the global variable $GLOBALS
which were used when a TYPO3
Request was initialized have been removed. They have been replaced by an alternative to use the TYPO3_
constant at the very beginning of each
TYPO3 request.
Impact
Checking for the mentioned constants and global variable have no effect anymore and may lead to unexpected behaviour.
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 TYPO3_
or TYPO3_
instead.