Breaking: #77750 - Return value of ContentObjectRenderer::exec_Query changed
See forge#77750
Description
The return type of
Content
has changed.
Instead of returning either
bool
,
\mysqli_
or
object
the return value always is a
\Doctrine\
.
Impact
Using the mentioned method will no longer yield the expected result type.
Affected Installations
Any installation with a 3rd party extension that uses the named method.
Migration
Change the way the result is being used to conform to the Doctrine API:
$result = $this->cObj->exec_getQuery(...);
while ($row = $result->fetch()) {
// Do something here
}
Copied!