diff options
author | ivan <ivan> | 2011-02-16 11:57:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-02-16 11:57:09 +0000 |
commit | 6a79fae0c14b6635c67b4f224ee4a14f263b37d0 (patch) | |
tree | 21ceb4de51a940c37d0e3c03f7918a46aa56184c | |
parent | 335407bd15c5d337da64eda12f6a4e8206172d50 (diff) |
fix freeside-sellfservice-xmlrpcd for implied hash :/
-rw-r--r-- | FS/FS/ClientAPI_XMLRPC.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/ClientAPI_XMLRPC.pm b/FS/FS/ClientAPI_XMLRPC.pm index 48b94eba2..f36e92e27 100644 --- a/FS/FS/ClientAPI_XMLRPC.pm +++ b/FS/FS/ClientAPI_XMLRPC.pm @@ -49,7 +49,7 @@ sub AUTOLOAD { #no strict 'refs'; #&{$call}(@_); #FS::ClientAPI->dispatch($autoload->{$call}, @_); - FS::ClientAPI->dispatch($autoload->{$call}, @_ ); + FS::ClientAPI->dispatch($autoload->{$call}, { @_ } ); }else{ die "No such procedure: $call"; } @@ -106,6 +106,7 @@ sub ss2clientapi { 'new_customer' => 'Signup/new_customer', 'capture_payment' => 'Signup/capture_payment', 'clear_signup_cache' => 'Signup/clear_cache', + 'new_agent' => 'Agent/new_agent', 'agent_login' => 'Agent/agent_login', 'agent_logout' => 'Agent/agent_logout', 'agent_info' => 'Agent/agent_info', |