Skip to content
Snippets Groups Projects
Commit 7ed275da authored by drastik's avatar drastik
Browse files

Less jibber jab in the Description line sent to Stripe.

parent 30771385
No related branches found
No related tags found
No related merge requests found
......@@ -389,12 +389,12 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
$params['description'] = ts('CiviCRM backend contribution');
}
else {
$params['description'] = ts('# CiviCRM Donation Page # ') . $params['description'];
$params['description'] = ts('CiviCRM # ') . $params['description'];
}
$stripe_charge = array(
'amount' => $amount,
'currency' => strtolower($params['currencyID']),
'description' => $params['description'] . ' # Invoice ID # ' . CRM_Utils_Array::value('invoiceID', $params),
'description' => $params['description'] . ' # Invoice ID: ' . CRM_Utils_Array::value('invoiceID', $params),
);
// Use Stripe Customer if we have a valid one. Otherwise just use the card.
......
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