We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6210370 commit 86d9a80Copy full SHA for 86d9a80
1 file changed
Classes/FieldProcessor/PageUidToHierarchy.php
@@ -60,7 +60,7 @@ public function process(array $values): array
60
$results = [];
61
62
foreach ($values as $value) {
63
- $rootPageUidAndMountPoint = GeneralUtility::trimExplode(',', $value, true, 2);
+ $rootPageUidAndMountPoint = GeneralUtility::trimExplode(',', (string)$value, true, 2);
64
$results[] = $this->getSolrRootlineForPageId(
65
(int)$rootPageUidAndMountPoint[0],
66
$rootPageUidAndMountPoint[1] ?? '',
0 commit comments