diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-11 23:15:50 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-16 15:27:43 -0500 |
commit | cfe3371f55ba574e042497836f7a5e4f35c94e92 (patch) | |
tree | 454fbdcc8632dde77bddf35410f10331389dfada /FS | |
parent | fb186784b7be72e157d6fd12fbe0b322fc6191ae (diff) |
RT#29169: Show payment information in selfservice portal
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/ClientAPI/MyAccount.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 0ebd821a7..85a96c7c5 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -763,6 +763,7 @@ sub billing_history { @history = sort { $b->{'date'} <=> $a->{'date'} } @history; $return{'history'} = \@history; + $return{'money_char'} = $conf->config("money_char") || '$', return \%return; |