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

(-)a/C4/Reserves.pm (-3 / +3 lines)
Lines 856-867 sub GetReservesForBranch { Link Here
856
Takes an itemnumber and returns the status of the reserve placed on it.
856
Takes an itemnumber and returns the status of the reserve placed on it.
857
If several reserves exist, the reserve with the lower priority is given.
857
If several reserves exist, the reserve with the lower priority is given.
858
858
859
=cut
860
861
## FIXME: I don't think this does what it thinks it does.
859
## FIXME: I don't think this does what it thinks it does.
862
## It only ever checks the first reserve result, even though
860
## It only ever checks the first reserve result, even though
863
## multiple reserves for that bib can have the itemnumber set
861
## multiple reserves for that bib can have the itemnumber set
864
## the sub is only used once in the codebase.
862
## the sub is only used once in the codebase.
863
864
=cut
865
865
sub GetReserveStatus {
866
sub GetReserveStatus {
866
    my ($itemnumber) = @_;
867
    my ($itemnumber) = @_;
867
868
868
- 

Return to bug 12802