From 618ae1855b3bf0b04dddb775b60d6ee622896246 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Sun, 23 Dec 2007 19:13:31 -0600 Subject: [PATCH] An item is only waiting if found is set to W in the reserves table Signed-off-by: Joshua Ferraro --- opac/opac-user.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-user.pl b/opac/opac-user.pl index 78ba325f7b..a7b8d610cb 100755 --- a/opac/opac-user.pl +++ b/opac/opac-user.pl @@ -185,7 +185,7 @@ foreach my $res (@reserves) { # get document reserve status my $biblioData = GetBiblioData($res->{'biblionumber'}); $res->{'waiting_title'} = $biblioData->{'title'}; - if ( ( $res->{'found'} eq 'W' ) or ( $res->{'priority'} eq '0' ) ) { + if ( ( $res->{'found'} eq 'W' ) ) { my $item = $res->{'itemnumber'}; $item = GetBiblioFromItemNumber($item,undef); $res->{'wait'}= 1; -- 2.39.2