From: Jason Stephenson Date: Sun, 24 Aug 2014 16:10:36 +0000 (-0400) Subject: Fix "thinko" in ILS->find_user_barcode. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f15eedcda738d4a0b0e77b6e6e03bc659a737624;p=NCIPServer.git Fix "thinko" in ILS->find_user_barcode. Signed-off-by: Jason Stephenson --- diff --git a/lib/NCIP/ILS.pm b/lib/NCIP/ILS.pm index 544baa8..65309ea 100644 --- a/lib/NCIP/ILS.pm +++ b/lib/NCIP/ILS.pm @@ -341,8 +341,8 @@ sub find_user_barcode { } } else { $authinput = $request->{$message}->{UserId}; - $field = 'UserIdentifierValue'; if ($authinput) { + $field = 'UserIdentifierValue'; if (ref $authinput ne 'ARRAY') { $authinput = [$authinput]; }