From 8332630fe1241cbe60e5aa377680cb81fae9060f Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Fri, 9 Oct 2015 14:48:20 -0400 Subject: [PATCH] Alter check_circ_details call in NCIP::ILS::Evergreen->renewitem. This call to $self->check_circ_details() needs to use the new signature when handling a renewitem message. Signed-off-by: Jason Stephenson --- lib/NCIP/ILS/Evergreen.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NCIP/ILS/Evergreen.pm b/lib/NCIP/ILS/Evergreen.pm index d134024..258d6b8 100644 --- a/lib/NCIP/ILS/Evergreen.pm +++ b/lib/NCIP/ILS/Evergreen.pm @@ -560,7 +560,7 @@ sub renewitem { # the patron was provided, that it is checked out to the patron in # question. We also verify the copy ownership and circulation # location. - my $problem = $self->check_circ_details($circ, $copy, $user); + my $problem = $self->check_circ_details($details, $user); if ($problem) { # We need to fill in some information, however. if (!$problem->ProblemValue() && !$problem->ProblemElement()) { -- 2.43.2