From 3ce93fa355d2297cd93a71f111e235b62f85642e Mon Sep 17 00:00:00 2001 From: Jake Deery Date: Tue, 3 Mar 2026 09:07:01 +0000 Subject: [PATCH] Bug 14962: (QA follow-up) Fixed request.pl being inaccessible Fixed a regression caused by an update to the nomenclature of effective_etcbranch vs. effective_etc_library (the former being an accessor for the home or holding branch's code, the latter being an accessor for the entire Koha::Library object). Sponsored-by: ByWater Solutions --- reserve/request.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reserve/request.pl b/reserve/request.pl index e71dba414e9..d4901387988 100755 --- a/reserve/request.pl +++ b/reserve/request.pl @@ -460,8 +460,8 @@ if ( ( $findborrower && $borrowernumber_hold || $findclub && $club_hold ) $item->{object} = $item_object; $item->{ccode} = $item_object->effective_collection_code; - $item->{holdingbranch} = $item_object->effective_holdingbranch->unblessed; - $item->{homebranch} = $item_object->effective_homebranch->unblessed; + $item->{holdingbranch} = $item_object->effective_holdingbranch; + $item->{homebranch} = $item_object->effective_homebranch; if ($patron) { $do_check = $patron->do_check_for_previous_checkout($item) if $wants_check; -- 2.50.1 (Apple Git-155)