|
Lines 392-398
sub CanItemBeReserved {
Link Here
|
| 392 |
{ |
392 |
{ |
| 393 |
borrowernumber => $borrowernumber, |
393 |
borrowernumber => $borrowernumber, |
| 394 |
biblionumber => $item->biblionumber, |
394 |
biblionumber => $item->biblionumber, |
| 395 |
found => undef, # Found holds don't count against a patron's holds limit |
|
|
| 396 |
} |
395 |
} |
| 397 |
); |
396 |
); |
| 398 |
if ( $holds->count() >= $holds_per_record ) { |
397 |
if ( $holds->count() >= $holds_per_record ) { |
| 399 |
- |
|
|