diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-02-25 01:56:38 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-02-25 01:56:38 -0800 |
commit | 0e0b58d3384aeaf24634319ceeb10a51ef3c26eb (patch) | |
tree | 208d37059f938c3d0939a3edda812a076bc997ea | |
parent | de6e0a33e78741559dd6f66f9920755b84997397 (diff) |
remove debug
-rw-r--r-- | FS/FS/ClientAPI/MyAccount.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 862cceb2a..4f4121900 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -555,8 +555,8 @@ sub customer_info_short { 1, ##nobalance ); -warn $return{first} = $cust_main->first; -warn $return{'last'} = $cust_main->get('last'); + $return{first} = $cust_main->first; + $return{'last'} = $cust_main->get('last'); $return{name} = $cust_main->first. ' '. $cust_main->get('last'); $return{payby} = $cust_main->payby; |