View | Details | Raw Unified | Return to bug 22284
Collapse All | Expand All

(-)a/Koha/Biblio.pm (-1 / +1 lines)
Lines 174-180 sub can_be_transferred { Link Here
174
@pickup_locations = $biblio->pickup_locations( {patron => $patron } )
174
@pickup_locations = $biblio->pickup_locations( {patron => $patron } )
175
175
176
Returns possible pickup locations for this biblio items, according to patron's home library (if patron is defined and holds are allowed only from hold groups)
176
Returns possible pickup locations for this biblio items, according to patron's home library (if patron is defined and holds are allowed only from hold groups)
177
and if item can be transfered to each pickup location.
177
and if item can be transferred to each pickup location.
178
178
179
=cut
179
=cut
180
180
(-)a/Koha/Item.pm (-2 / +1 lines)
Lines 303-309 sub can_be_transferred { Link Here
303
@pickup_locations = $item->pickup_locations( {patron => $patron } )
303
@pickup_locations = $item->pickup_locations( {patron => $patron } )
304
304
305
Returns possible pickup locations for this item, according to patron's home library (if patron is defined and holds are allowed only from hold groups)
305
Returns possible pickup locations for this item, according to patron's home library (if patron is defined and holds are allowed only from hold groups)
306
and if item can be transfered to each pickup location.
306
and if item can be transferred to each pickup location.
307
307
308
=cut
308
=cut
309
309
310
- 

Return to bug 22284