From 23c93d6e804a7ac259ca2f774756a35790096e5a Mon Sep 17 00:00:00 2001 From: acli Date: Thu, 6 Feb 2003 07:40:12 +0000 Subject: [PATCH] Removed check for IS (bug 202) --- opac/opac-reserve.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index 3d6217ae5d..a8db2120d7 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -66,7 +66,7 @@ $template->param(branchname => $branches->{$branch}->{'branchname'}); my $branchoptions = ''; my @branches; foreach my $br (keys %$branches) { - (next) unless $branches->{$br}->{'IS'}; + #(next) unless $branches->{$br}->{'IS'}; # FIXME disabled to fix bug 202 my $selected = ""; if ($br eq $branch) { $selected = "selected"; @@ -94,6 +94,7 @@ my @duedates; foreach my $itm (@items) { push @duedates, {date_due => slashifyDate($itm->{'date_due'})} if defined $itm->{'date_due'}; $itm->{$itm->{'publictype'}} = 1; + # FIXME CalcReserveFee is supposed to be internal-use-only my $fee = CalcReserveFee(undef, $borrowernumber, $itm->{'biblionumber'},'a',($itm->{'biblioitemnumber'})); $fee = sprintf "%.02f", $fee; $itm->{'reservefee'} = $fee; -- 2.39.2