Skip to content
Snippets Groups Projects
Unverified Commit e8a38180 authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #17703 from mattwire/contributionpage_currency

Fix currency symbol for Total Amount on contribution page
parents 69b599e1 fa1a821d
Branches
Tags
No related merge requests found
......@@ -157,7 +157,7 @@ function display(totalfee) {
// totalfee is monetary, round it to 2 decimal points so it can
// go as a float - CRM-13491
totalfee = Math.round(totalfee*100)/100;
var totalFormattedFee = CRM.formatMoney(totalfee);
var totalFormattedFee = symbol + ' ' + CRM.formatMoney(totalfee, true);
cj('#pricevalue').html(totalFormattedFee);
cj('#total_amount').val( totalfee );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment