From c6396d13834b8d3559796c3193c82e01b8b22969 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sat, 25 Oct 2014 12:53:16 -0400 Subject: [PATCH] Fix typo in previous commit. Signed-off-by: Jason Stephenson --- lib/NCIP/ILS/Evergreen.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/NCIP/ILS/Evergreen.pm b/lib/NCIP/ILS/Evergreen.pm index db908a7..8c94011 100644 --- a/lib/NCIP/ILS/Evergreen.pm +++ b/lib/NCIP/ILS/Evergreen.pm @@ -1361,7 +1361,7 @@ sub handle_user_elements { } ) ); - push @$adresses, $address; + push @$addresses, $address; } if ($user->evening_phone()) { my $address = NCIP::User::AddressInformation->new({UserAddressRoleType=>'Evening Phone'}); @@ -1373,7 +1373,7 @@ sub handle_user_elements { } ) ); - push @$adresses, $address; + push @$addresses, $address; } if ($user->other_phone()) { my $address = NCIP::User::AddressInformation->new({UserAddressRoleType=>'Other Phone'}); @@ -1385,7 +1385,7 @@ sub handle_user_elements { } ) ); - push @$adresses, $address; + push @$addresses, $address; } $optionalfields->UserAddressInformation($addresses); -- 2.43.2