summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-06-11 23:15:50 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-06-11 23:15:50 -0500
commitb2f5f42600f11ab24e5393353ed4c0de48816862 (patch)
treebc8f1a2d46fbb14fa654b05925ed50a11f973268 /FS
parent602566b7790de0d29c0828487a6c424e56606db5 (diff)
RT#29169: Show payment information in selfservice portal
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/ClientAPI/MyAccount.pm1
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;