diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-11 23:15:50 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-11 23:15:50 -0500 |
commit | b2f5f42600f11ab24e5393353ed4c0de48816862 (patch) | |
tree | bc8f1a2d46fbb14fa654b05925ed50a11f973268 /FS | |
parent | 602566b7790de0d29c0828487a6c424e56606db5 (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 fa2b6ba8c..cb6ac02d8 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -740,6 +740,7 @@ sub billing_history { @history = sort { $b->{'date'} <=> $a->{'date'} } @history; $return{'history'} = \@history; + $return{'money_char'} = $conf->config("money_char") || '$', return \%return; |