From: Jason Stephenson Date: Mon, 8 Sep 2014 01:11:45 +0000 (-0400) Subject: Fix another mistake in NCIP::ILS::Evergreen. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=00d4e234b9bfab0e15d9d90ce315fefe5773843c;p=NCIPServer.git Fix another mistake in NCIP::ILS::Evergreen. Forgot the {} around the arguments when creating a NCIP::Response object in acceptitem. Signed-off-by: Jason Stephenson --- diff --git a/lib/NCIP/ILS/Evergreen.pm b/lib/NCIP/ILS/Evergreen.pm index 70f98ea..aebe23d 100644 --- a/lib/NCIP/ILS/Evergreen.pm +++ b/lib/NCIP/ILS/Evergreen.pm @@ -342,7 +342,7 @@ sub acceptitem { # Common preparation. my $message = $self->parse_request_type($request); - my $response = NCIP::Response->new(type => $message . 'Response'); + my $response = NCIP::Response->new({type => $message . 'Response'}); $response->header($self->make_header($request)); # We only accept holds for the time being.