Breaking: #82629 - Removed tce_db options "prErr" and "uPT"
See forge#82629
Description
The two options pr
("print errors") and u
("update page tree"), usually set via GET/POST
when calling TYPO3's Backend endpoint tce_
(DataHandler actions within the TYPO3 Backend),
have been removed, and are now automatically evaluated when the endpoint is called.
The option pr
added possible errors to the Message Queue. The option u
triggered an update
of the pagetree after a page-related action was made.
Both options are dropped as the functionality is enabled by default.
The corresponding methods have been adjusted:
TYPO3\
does not need a method argument anymore.CMS\ Core\ Data Handling\ Data Handler->print Log Error Messages () - The public property
TYPO3\
is removedCMS\ Backend\ Controller\ Simple Data Handler Controller->pr Err - The public property
TYPO3\
is removedCMS\ Backend\ Controller\ Simple Data Handler Controller->u PT
Impact
Calling tce_
with any of the two options has no effect anymore.
Affected Installations
Installations with third-party extensions accessing the entrypoint tce_
or calling
Data
via PHP.
Migration
Remove any of the parameters in the PHP code and everything will continue to work as before.