diff --git a/module/VuFind/src/VuFind/ILS/Logic/Holds.php b/module/VuFind/src/VuFind/ILS/Logic/Holds.php index 4f37ad8864fcfffa131250ab84d0beeefd594793..ce6d6bfd68897b5d39e15d46c5a4e247f2c05388 100644 --- a/module/VuFind/src/VuFind/ILS/Logic/Holds.php +++ b/module/VuFind/src/VuFind/ILS/Logic/Holds.php @@ -115,9 +115,7 @@ class Holds { $retVal = []; - // Handle purchase history alongside other textual fields $textFieldNames = $this->catalog->getHoldingsTextFieldNames(); - $textFieldNames[] = 'purchase_history'; foreach ($holdings as $groupKey => $items) { $retVal[$groupKey] = [ @@ -156,6 +154,16 @@ class Holds } } } + + // Handle purchase history + if (!empty($item['purchase_history'])) { + $targetRef = & $retVal[$groupKey]['purchase_history']; + foreach ((array)$item['purchase_history'] as $field) { + if (empty($targetRef) || !in_array($field, $targetRef)) { + $targetRef[] = $field; + } + } + } } }