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,37 @@
.. include:: /Includes.rst.txt
.. _deprecation-79580:
====================================================================================
Deprecation: #79580 - Deprecate methods in DataHandler related to page delete access
====================================================================================
See :issue:`79580`
Description
===========
The following methods have been marked as deprecated:
* :php:`TYPO3\CMS\Core\DataHandling\DataHandler->rmComma()`
* :php:`TYPO3\CMS\Core\DataHandling\DataHandler->noRecordsFromUnallowedTables()`
Impact
======
Calling these methods will trigger a deprecation log entry.
Affected Installations
======================
Any TYPO3 extension calling one of these methods.
Migration
=========
Use native :php:`rtrim($input, ',')` instead of :php:`TYPO3\CMS\Core\DataHandling\DataHandler->rmComma()`.
No migration available for :php:`TYPO3\CMS\Core\DataHandling\DataHandler->noRecordsFromUnallowedTables()`.
.. index:: Database, PHP-API, Backend