From: Jason Stephenson Date: Thu, 25 Jun 2015 17:51:41 +0000 (-0400) Subject: Fix typo in NCIP::ILS::Evergreen->lookupuser(). X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ab22e414d702b9e72f2b80dc7d79bbe3aa890237;p=NCIPServer.git 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 --- 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);