Skip to content
Snippets Groups Projects
Commit 35ca3085 authored by Ere Maijala's avatar Ere Maijala Committed by Demian Katz
Browse files

Guard against circular references when building record hierarchy from Solr. (#1213)

parent 9caf961a
No related merge requests found
...@@ -195,6 +195,10 @@ class Solr extends AbstractBase ...@@ -195,6 +195,10 @@ class Solr extends AbstractBase
$parents = isset($current->hierarchy_parent_id) $parents = isset($current->hierarchy_parent_id)
? $current->hierarchy_parent_id : []; ? $current->hierarchy_parent_id : [];
foreach ($parents as $parentId) { foreach ($parents as $parentId) {
if ($current->id === $parentId) {
// Ignore circular reference
continue;
}
if (!isset($map[$parentId])) { if (!isset($map[$parentId])) {
$map[$parentId] = [$current]; $map[$parentId] = [$current];
} else { } else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment