From: ivan Date: Fri, 21 Jun 2002 20:26:14 +0000 (+0000) Subject: fix infostreet contact field setting X-Git-Tag: freeside_1_4_0_beta1~70 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=5939c0f1ae7bea08adde82f6d3578e6c5ac31248 fix infostreet contact field setting --- 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} ); } }