From 883edf939114664787ad75bed216ff295e6f18e8 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Sun, 23 Dec 2007 19:16:11 -0600 Subject: [PATCH] Priority = 0 does not equal reserve found, only found='W' equals reserve found Signed-off-by: Joshua Ferraro --- reserve/request.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reserve/request.pl b/reserve/request.pl index e4ec04e155..eed5b3147c 100755 --- a/reserve/request.pl +++ b/reserve/request.pl @@ -181,7 +181,7 @@ my $alreadyreserved; my $borrowerinfo = GetMemberDetails( 0, $cardnumber ); foreach my $res (@$reserves) { - if ( ( $res->{found} eq 'W' ) or ( $res->{priority} == 0 ) ) { + if ( ( $res->{found} eq 'W' ) ) { $count--; } -- 2.39.2