diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2013-01-09 16:46:46 -0800 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2013-01-09 16:46:46 -0800 |
| commit | 70cab6e5614ff57fd02a292790753dba743d7934 (patch) | |
| tree | 078e51ab1c9a82df9c816a632aff12a1d1a14e49 | |
| parent | d127c4c8273835c306a34bf9c5a1a275e441114d (diff) | |
fix replace method? #17622
| -rw-r--r-- | FS/FS/part_export/acct_xmlrpc.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_export/acct_xmlrpc.pm b/FS/FS/part_export/acct_xmlrpc.pm index c7b1a3fb1..b1da1083e 100644 --- a/FS/FS/part_export/acct_xmlrpc.pm +++ b/FS/FS/part_export/acct_xmlrpc.pm @@ -130,10 +130,10 @@ sub _export_command { sub _export_replace { my( $self, $new, $old ) = (shift, shift, shift); - my $method = $self->option($action.'_method'); + my $method = $self->option('replace_method'); return '' if $method =~ /^\s*$/; - my @params = split("\n", $self->option($action.'_params') ); + my @params = split("\n", $self->option('replace_params') ); my( @x_param ) = (); my( %x_struct ) = (); |
