Skip to content
Snippets Groups Projects
Commit 0e3ef75f authored by Aaron Elliot Ross's avatar Aaron Elliot Ross
Browse files

Fix typo in variable name

parent 17e7f9e3
Branches
Tags
1 merge request!170Stripe importsubscription tweaks
......@@ -42,7 +42,7 @@ function civicrm_api3_stripe_importsubscription($params) {
$custresult = civicrm_api3('StripeCustomer', 'get', $customerParams);
if ($custresult['count'] == 0) {
// Create the customer.
$cusotmerParmas['contact_id'] = $params['contact_id'];
$customerParams['contact_id'] = $params['contact_id'];
$custresult = civicrm_api3('StripeCustomer', 'create', $customerParams);
}
$customer = array_pop($custresult['values']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment