Skip to content
Snippets Groups Projects
Commit bcb0a289 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Duplicate breadcrumbs in VuDL when using Solr connector fix.

parent 96b880bb
Branches
Tags
No related merge requests found
......@@ -284,7 +284,9 @@ class Solr extends AbstractBase
'title' => $parents->hierarchy_parent_title[$i]
);
}
$tree[$cid]['children'][] = $current;
if (!in_array($current, $tree[$cid]['children'])) {
$tree[$cid]['children'][] = $current;
}
}
}
}
......
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