TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,39 @@
.. include:: /Includes.rst.txt
.. _breaking-69276:
=============================================================
Breaking: #69276 - ElementBrowserController::$browser removed
=============================================================
See :issue:`69276`
Description
===========
The `$browser` member variable of `\TYPO3\CMS\Recordlist\Controller\ElementBrowserController` has been removed.
Impact
======
Any third party code accessing `$GLOBAL['SOBE']->browser` will break.
Affected Installations
======================
Installations using third party code, which accesses `$GLOBAL['SOBE']->browser`.
Migration
=========
If the code is extending one of the ElementBrowser tree classes, the protected member variable `$elementBrowser` can
be used to access the underlying ElementBrowser instance.
If your code is using the ElementBrowser tree classes, an instance of `ElementBrowser` has to be injected using the setter.
.. index:: PHP-API, Backend