|
Lines 280-285
is( $messages->{ResFound}->{borrowernumber},
Link Here
|
| 280 |
# Return the FPL item at FPL. The hold that should be triggered is |
280 |
# Return the FPL item at FPL. The hold that should be triggered is |
| 281 |
# the one placed by the RPL patron, as that patron is first in line |
281 |
# the one placed by the RPL patron, as that patron is first in line |
| 282 |
# and RPL imposes no restrictions on whose holds its items can fill. |
282 |
# and RPL imposes no restrictions on whose holds its items can fill. |
|
|
283 |
|
| 284 |
# Ensure that the preference 'LocalHoldsPriority' is not set (Bug 15244): |
| 285 |
C4::Context->set_preference( 'LocalHoldsPriority', '' ); |
| 286 |
|
| 283 |
(undef, $messages, undef, undef) = AddReturn('bug10272_FPL', 'FPL'); |
287 |
(undef, $messages, undef, undef) = AddReturn('bug10272_FPL', 'FPL'); |
| 284 |
is( $messages->{ResFound}->{borrowernumber}, |
288 |
is( $messages->{ResFound}->{borrowernumber}, |
| 285 |
$requesters{'RPL'}, |
289 |
$requesters{'RPL'}, |
| 286 |
- |
|
|