From 7c8d0b9cf62a434fe75eeaf5d5620aedb28e91a0 Mon Sep 17 00:00:00 2001 From: Chris Burgess Date: Tue, 20 Jan 2015 14:56:36 +1300 Subject: [PATCH] CRM-15844 --- CRM/Contribute/BAO/Contribution/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/BAO/Contribution/Utils.php b/CRM/Contribute/BAO/Contribution/Utils.php index 75bd26eb26..47073f91cc 100644 --- a/CRM/Contribute/BAO/Contribution/Utils.php +++ b/CRM/Contribute/BAO/Contribution/Utils.php @@ -189,7 +189,7 @@ class CRM_Contribute_BAO_Contribution_Utils { elseif ($form->_contributeMode == 'express') { if ($form->_values['is_monetary'] && $form->_amount > 0.0) { // determine if express + recurring and direct accordingly - if ($paymentParams['is_recur'] == 1) { + if (isset($paymentParams['is_recur'] && $paymentParams['is_recur'] == 1) { if (is_object($payment)) { $result = $payment->createRecurringPayments($paymentParams); } -- 2.25.1