Breaking: #69276 - ElementBrowserController::$browser removed¶
See forge#69276
Description¶
The $browser
member variable of \TYPO3\
has been removed.
Impact¶
Any third party code accessing $GLOBAL
will break.
Affected Installations¶
Installations using third party code, which accesses $GLOBAL
.
Migration¶
If the code is extending one of the ElementBrowser tree classes, the protected member variable $element
can
be used to access the underlying ElementBrowser instance.
If your code is using the ElementBrowser tree classes, an instance of Element
has to be injected using the setter.