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

(-)a/C4/Reserves.pm (-3 / +3 lines)
Lines 604-615 sub GetReservesForBranch { Link Here
604
Takes an itemnumber and returns the status of the reserve placed on it.
604
Takes an itemnumber and returns the status of the reserve placed on it.
605
If several reserves exist, the reserve with the lower priority is given.
605
If several reserves exist, the reserve with the lower priority is given.
606
606
607
=cut
608
609
## FIXME: I don't think this does what it thinks it does.
607
## FIXME: I don't think this does what it thinks it does.
610
## It only ever checks the first reserve result, even though
608
## It only ever checks the first reserve result, even though
611
## multiple reserves for that bib can have the itemnumber set
609
## multiple reserves for that bib can have the itemnumber set
612
## the sub is only used once in the codebase.
610
## the sub is only used once in the codebase.
611
612
=cut
613
613
sub GetReserveStatus {
614
sub GetReserveStatus {
614
    my ($itemnumber) = @_;
615
    my ($itemnumber) = @_;
615
616
616
- 

Return to bug 12802