Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.6
-
Fix Version/s: 4.7
-
Component/s: CiviContribute
-
Labels:None
-
Documentation Required?:None
-
Funding Source:Core Team Funds
Description
To recreate:
add contribution w/ currency = GBP, select the sample PCP in the PCP pane
review the owner notification email, Amount will show as $ (USD).
The fix is ...
1. In Confirm.php pcpNotifyOwner(), add line to $tplParams
'currency' => $contributionSoft->currency,
2. In Notify Owner message template, add $currency, e.g. ...
<tr><td>
Amount
{/ts}:</td>
<td> {$total_amount|crmMoney:$currency}</td></tr>
Need to do this in both HTML and TEXT files and also do an upgrade to message template for existing sites.