From 78ca5bd8fef66e21e41763a7df3d18b6847af14f Mon Sep 17 00:00:00 2001 From: Ere Maijala <ere.maijala@helsinki.fi> Date: Tue, 9 Jun 2020 15:20:24 -0400 Subject: [PATCH] Improved prefix stripping for getPickUpLocations(). --- module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php index 4c9c455e909..9e028cdd0cd 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php +++ b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php @@ -743,7 +743,9 @@ class MultiBackend extends AbstractBase implements \Laminas\Log\LoggerAwareInter } $locations = $driver->getPickUpLocations( $this->stripIdPrefixes($patron, $source), - $this->stripIdPrefixes($holdDetails, $source) + $this->stripIdPrefixes( + $holdDetails, $source, ['id', 'cat_username', 'item_id'] + ) ); return $this->addIdPrefixes($locations, $source); } -- GitLab