diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-02-12 15:29:11 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-02-12 15:29:11 -0800 |
commit | 92cbc41959f36cb9e3d281b2dfb6a5ad587f5584 (patch) | |
tree | b644cdc871b1aeb707244cd9d0f972f97919630a | |
parent | ca64920f7bd3c6599c164b5fcb126a6a1c0f7c42 (diff) |
fix self-serv fallout from : add quantity and location to self-service package order API, RT#33219
-rw-r--r-- | FS/FS/ClientAPI/MyAccount.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 023c1d6cf..8c6a5b8f7 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -2270,7 +2270,7 @@ sub order_pkg { my $status = $cust_main->status; - my %order_pkg_options = ()); + my %order_pkg_options = (); if ( $p->{locationnum} > 0 ) { $order_pkg_options{locationnum} = delete($p->{locationnum}); } elsif ( $p->{address1} ) { |