From 5939c0f1ae7bea08adde82f6d3578e6c5ac31248 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 21 Jun 2002 20:26:14 +0000 Subject: [PATCH] fix infostreet contact field setting --- FS/FS/part_export/infostreet.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FS/FS/part_export/infostreet.pm b/FS/FS/part_export/infostreet.pm index a2fc049f4..89ab06d22 100644 --- a/FS/FS/part_export/infostreet.pm +++ b/FS/FS/part_export/infostreet.pm @@ -143,9 +143,9 @@ sub infostreet_setContact { my($url, $is_username, $is_password, $groupID, $username, %contact_info) = @_; my $accountID = infostreet_command($url, $is_username, $is_password, $groupID, 'getAccountID', $username); - foreach my $field ( %contact_info ) { + foreach my $field ( keys %contact_info ) { infostreet_command($url, $is_username, $is_password, $groupID, - 'setContactField', $field, $contact_info{$field} ); + 'setContactField', $accountID, $field, $contact_info{$field} ); } } -- 2.11.0