Skip to content
Snippets Groups Projects
Commit 8c684a66 authored by Anja Leichsenring's avatar Anja Leichsenring Committed by Susanne Moog
Browse files

[BUGFIX] Correct method name in documentation file

The mentioned method to be changed was mistyped.
The name given in the rst file doesn't exist.

Resolves: #77750
Releases: master, 8.7
Change-Id: Ic64590c8ffa3826dd3c5db5365e0c5273e897824
Reviewed-on: https://review.typo3.org/54954


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarSusanne Moog <susanne.moog@typo3.org>
Tested-by: default avatarSusanne Moog <susanne.moog@typo3.org>
parent d3470548
Branches
Tags
No related merge requests found
......@@ -9,7 +9,7 @@ See :issue:`77750`
Description
===========
The return type of :php:`ContentObjectRenderer::exec_Query()` has changed.
The return type of :php:`ContentObjectRenderer::exec_getQuery()` 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`.
......@@ -33,7 +33,7 @@ Change the way the result is being used to conform to the Doctrine API:
.. code-block:: php
$result = $this->cObj->exec_Query(...);
$result = $this->cObj->exec_getQuery(...);
while ($row = $result->fetch()) {
// Do something here
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment