diff --git a/CRM/Contribute/Form/Contribution/Confirm.php b/CRM/Contribute/Form/Contribution/Confirm.php index a8b19f13e04f..78a08ea421ee 100644 --- a/CRM/Contribute/Form/Contribution/Confirm.php +++ b/CRM/Contribute/Form/Contribution/Confirm.php @@ -1842,7 +1842,7 @@ protected function getIsPending() { * * Ie the membership block supports a separate transactions AND the contribution form has been configured for a * contribution - * transaction AND a membership transaction AND the payment processor supports double financial transactions (ie. NOT doTransferPayment style) + * transaction AND a membership transaction AND the payment processor supports double financial transactions (ie. NOT doTransferCheckout style) * * @param int $formID * @param bool $amountBlockActiveOnForm diff --git a/CRM/Core/Payment.php b/CRM/Core/Payment.php index b686cd8501a3..13f506bcd118 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -1153,7 +1153,7 @@ protected function doDirectPayment(&$params) { } /** - * Process payment - this function wraps around both doTransferPayment and doDirectPayment. + * Process payment - this function wraps around both doTransferCheckout and doDirectPayment. * * The function ensures an exception is thrown & moves some of this logic out of the form layer and makes the forms * more agnostic. diff --git a/CRM/Core/Payment/PayPalImpl.php b/CRM/Core/Payment/PayPalImpl.php index 8ab1bbec3a72..e5cd28035117 100644 --- a/CRM/Core/Payment/PayPalImpl.php +++ b/CRM/Core/Payment/PayPalImpl.php @@ -478,7 +478,7 @@ public function initialize(&$args, $method) { } /** - * Process payment - this function wraps around both doTransferPayment and doDirectPayment. + * Process payment - this function wraps around both doTransferCheckout and doDirectPayment. * * The function ensures an exception is thrown & moves some of this logic out of the form layer and makes the forms * more agnostic.