Skip to content
Snippets Groups Projects
Commit dede21ff authored by Dorian Merz's avatar Dorian Merz
Browse files

refs #15096 [master] fixes getOtherRelationshipEntry()

* now uses given labels as keys
parent 3c96388f
Branches
Tags
No related merge requests found
...@@ -1100,7 +1100,7 @@ trait SolrMarcFincTrait ...@@ -1100,7 +1100,7 @@ trait SolrMarcFincTrait
// rearrange return array to collect same subjects below on unique key // rearrange return array to collect same subjects below on unique key
$array = []; $array = [];
foreach ($retval as $item) { foreach ($retval as $item) {
$array[(sha1($item['subject']))][] = $item; $array[$item['subject']][] = $item;
} }
return $array; return $array;
} }
......
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