From: ivan Date: Tue, 7 Oct 2003 06:03:17 +0000 (+0000) Subject: fix subroutine call from UpdateAccountSettings sub X-Git-Tag: NET_WHOIS_RAW_0_31~340 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=79dcffa66be02e3ddb342d36dcded01888c3d841 fix subroutine call from UpdateAccountSettings sub --- diff --git a/FS/FS/part_export/communigate_pro.pm b/FS/FS/part_export/communigate_pro.pm index a9d9591ca..4240618ac 100644 --- a/FS/FS/part_export/communigate_pro.pm +++ b/FS/FS/part_export/communigate_pro.pm @@ -109,7 +109,7 @@ sub CreateAccount { #externalFlag => $externalFlag, push @args, externalFlag => $externalFlag if $externalFlag; - communigate_pro_command( $machine, $port, $login, $password, $method, @args ); + &communigate_pro_command( $machine, $port, $login, $password, $method, @args); } @@ -118,7 +118,7 @@ sub UpdateAccountSettings { my $accountName = delete $args{'accountName'}; $args{'AccessModes'} = [ split(' ', $args{'AccessModes'}) ]; @args = ( $accountName, \%args ); - communigate_pro_command( $machine, $port, $login, $password, $method, @args ); + &communigate_pro_command( $machine, $port, $login, $password, $method, @args); } sub communigate_pro_command { #subroutine, not method