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

(-)a/Koha/Biblio.pm (-1 / +1 lines)
Lines 194-200 sub can_be_transferred { Link Here
194
@pickup_locations = $biblio->pickup_locations( {patron => $patron } )
194
@pickup_locations = $biblio->pickup_locations( {patron => $patron } )
195
195
196
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)
196
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)
197
and if item can be transfered to each pickup location.
197
and if item can be transferred to each pickup location.
198
198
199
=cut
199
=cut
200
200
(-)a/Koha/Item.pm (-2 / +1 lines)
Lines 286-292 sub can_be_transferred { Link Here
286
@pickup_locations = $item->pickup_locations( {patron => $patron } )
286
@pickup_locations = $item->pickup_locations( {patron => $patron } )
287
287
288
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)
288
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)
289
and if item can be transfered to each pickup location.
289
and if item can be transferred to each pickup location.
290
290
291
=cut
291
=cut
292
292
293
- 

Return to bug 22284