Skip to content
Snippets Groups Projects
Unverified Commit a8ec2c7d authored by Eileen McNaughton's avatar Eileen McNaughton Committed by GitHub
Browse files

Merge pull request #20690 from civicrm/5.39

5.39
parents a7e52eb6 5fa4622e
Branches
Tags
No related merge requests found
......@@ -58,7 +58,9 @@ class CRM_Api4_Services {
);
}
if (defined('CIVICRM_UF') && CIVICRM_UF === 'UnitTests') {
if (defined('CIVICRM_UF') && CIVICRM_UF === 'UnitTests'
&& file_exists('tests/phpunit/api/v4/services.xml')
) {
$loader->load('tests/phpunit/api/v4/services.xml');
}
}
......
......@@ -553,6 +553,8 @@ class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form {
$paymentParams = array_merge($paymentParams, $contributionRecurParams);
}
$paymentParams['invoiceID'] = $paymentParams['invoice_id'];
$payment = $this->_paymentProcessor['object'];
$result = $payment->doPayment($paymentParams);
$this->_params = array_merge($this->_params, $result);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment