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
.. _breaking-77557:
=======================================================================
Breaking: #77557 - Signature of QueryView->getQueryResultCode() changed
=======================================================================
See :issue:`77557`
Description
===========
The method signature of :php:`QueryView->getQueryResultCode()` has changed
from :php:`getQueryResultCode($mQ, $res, $table)` to :php:`getQueryResultCode($type, array $dataRows, $table)`.
The second argument is no longer a MySQLi or DBAL result object, but an array of rows.
Impact
======
Extensions using this method will throw a fatal error.
Affected Installations
======================
Extensions using :php:`QueryView->getQueryResultCode()`
Migration
=========
Move away from the method or feed it with an array of database rows.
.. index:: PHP-API, Database