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-16 15:27:43 -0500
commitcfe3371f55ba574e042497836f7a5e4f35c94e92 (patch)
tree454fbdcc8632dde77bddf35410f10331389dfada /FS
parentfb186784b7be72e157d6fd12fbe0b322fc6191ae (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 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;