From eed30bb45c4a5b400af71d1c0afbd8d7cdfa47b5 Mon Sep 17 00:00:00 2001 From: Susanne Moog <susanne.moog@typo3.org> Date: Sun, 17 Jun 2018 16:45:10 +0200 Subject: [PATCH] [BUGFIX] Cast database result uid to int As the OrphanRecordsCommand is using strict types the results in row['uid'] has been casted to int before usage in further methods as it is returned as string from the database. Resolves: #85288 Releases: master Change-Id: Ia7a8f0f2be37b4b35a246f95049e20d717cbf767 Reviewed-on: https://review.typo3.org/57247 Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: Georg Ringer <georg.ringer@gmail.com> Reviewed-by: Tymoteusz Motylewski <t.motylewski@gmail.com> Tested-by: Tymoteusz Motylewski <t.motylewski@gmail.com> --- .../sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php index bccab3ae8367..5671fc5159ce 100644 --- a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php +++ b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php @@ -211,7 +211,7 @@ Manual repair suggestions: ->execute(); while ($row = $result->fetch()) { - $allRecords = $this->findAllConnectedRecordsInPage($row['uid'], $depth, $allRecords); + $allRecords = $this->findAllConnectedRecordsInPage((int)$row['uid'], $depth, $allRecords); } } @@ -221,7 +221,7 @@ Manual repair suggestions: if (is_array($versions)) { foreach ($versions as $verRec) { if (!$verRec['_CURRENT_VERSION']) { - $allRecords = $this->findAllConnectedRecordsInPage($verRec['uid'], $depth, $allRecords); + $allRecords = $this->findAllConnectedRecordsInPage((int)$verRec['uid'], $depth, $allRecords); } } } -- GitLab