Skip to content

Commit a0a42e0

Browse files
author
Florian Wessels
authored
Merge pull request #1 from majernik/TYPO3_9
[BUGFIX] Do not use fetchAll when fetching for a single record
2 parents 1da4c4a + 0d21574 commit a0a42e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Classes/Hooks/JumpurlController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public function getRawRecord($table, $uid, $fields = '*')
216216
)
217217
->execute();
218218

219-
$row = $res->fetchAll();
219+
$row = $res->fetch();
220220

221221
if ($row) {
222222
if (is_array($row)) {

0 commit comments

Comments
 (0)