From: Jason Stephenson Date: Mon, 8 Dec 2014 23:28:33 +0000 (-0500) Subject: Fix a typo on line 2790 of NCIP::ILS::Evergreen. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ea2801aa01dfb578d0c91bdb67f74b99cff6f9eb;p=NCIPServer.git Fix a typo on line 2790 of NCIP::ILS::Evergreen. Signed-off-by: Jason Stephenson --- diff --git a/lib/NCIP/ILS/Evergreen.pm b/lib/NCIP/ILS/Evergreen.pm index 8f3be5b..6bc9620 100644 --- a/lib/NCIP/ILS/Evergreen.pm +++ b/lib/NCIP/ILS/Evergreen.pm @@ -2787,7 +2787,7 @@ sub find_location_failover { $location = $request->{$message}->{InitiationHeader}->{ToAgencyId}->{AgencyId}; if ($location) { # Because Auto-Graphics. (This should be configured somehow.) - $location = ~ s/^[^-]+-//; + $location =~ s/^[^-]+-//; $org_unit = $self->retrieve_org_unit_by_shortname($location); } }