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,38 @@
.. include:: /Includes.rst.txt
.. _breaking-76469:
===============================================
Breaking: #76469 - Doctrine: migrate ext:ImpExp
===============================================
See :issue:`76469`
Description
===========
The return type of :php:`ImportExportController::exec_listQueryPid()`
has changed. Instead of returning either :php:`bool`, :php:`\mysqli_result`
or :php:`object` the return value always is a :php:`\Doctrine\DBAL\Driver\Statement`.
Impact
======
Using the mentioned method will not yield the expected result type.
Affected Installations
======================
All installations with a 3rd party extension using :php:`ImportExportController::exec_listQueryPid()`.
Migration
=========
Migrate all calls that work with the result of :php:`ImportExportController::exec_listQueryPid()`
to be able to handle :php:`\Doctrine\DBAL\Driver\Statement` objects.
.. index:: Database, PHP-API