Skip to content
Snippets Groups Projects
Commit 6034ec5b authored by Joshua Walker's avatar Joshua Walker Committed by GitHub
Browse files

Merge pull request #158 from artfulrobot/4.7-dev

Fix wrong currency in plan names #157
parents 6860a518 38abd9a8
No related branches found
No related tags found
No related merge requests found
......@@ -543,12 +543,12 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
WHERE plan_id = %1 AND is_live = '{$this->_islive}' AND processor_id = %2", $query_params);
if (!isset($stripe_plan_query)) {
$formatted_amount = '$' . number_format(($amount / 100), 2);
$formatted_amount = number_format(($amount / 100), 2);
// Create a new Plan.
$stripe_plan = array(
'amount' => $amount,
'interval' => $frequency,
'name' => "CiviCRM every {$frequency_interval} {$frequency}s {$formatted_amount}",
'name' => "CiviCRM every {$frequency_interval} {$frequency}(s) {$formatted_amount}{$currency}",
'currency' => $currency,
'id' => $plan_id,
'interval_count' => $frequency_interval,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment