From ab22e414d702b9e72f2b80dc7d79bbe3aa890237 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Thu, 25 Jun 2015 13:51:41 -0400 Subject: [PATCH] Fix typo in NCIP::ILS::Evergreen->lookupuser(). I had IdnetifierValue instead of IdentifierValue. Is that something I fixed in place during testing and forgot to fix in the repo? 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 1de6737..80f0008 100644 --- a/lib/NCIP/ILS/Evergreen.pm +++ b/lib/NCIP/ILS/Evergreen.pm @@ -166,7 +166,7 @@ sub lookupuser { # Use the user's main card as the UserId. my $id = NCIP::User::Id->new({ UserIdentifierType => 'Barcode', - UserIdnetifierValue => $user->card->barcode() || $barcode + UserIdentifierValue => $user->card->barcode() || $barcode }); $userdata->UserId($id); -- 2.43.2