Skip to content

Commit

Permalink
[BUGFIX:BP:11.5] Fix error when indexing pages with field processing …
Browse files Browse the repository at this point in the history
…instruction categoryUidToHierarchy

Fixes: #3445
Ports: #3446
  • Loading branch information
frival authored and dkd-kaehm committed Jan 19, 2023
1 parent d095058 commit 640c7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/FieldProcessor/CategoryUidToHierarchy.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function process(array $values): array
foreach ($values as $value) {
$results = array_merge(
$results,
$this->getSolrRootlineForCategoryId($value)
$this->getSolrRootlineForCategoryId((int)$value)
);
}

Expand Down

0 comments on commit 640c7e2

Please sign in to comment.