From 11d48665759790b5c2445d66a44d1bd5f9cc88a3 Mon Sep 17 00:00:00 2001 From: Eileen Date: Mon, 24 Aug 2015 17:24:29 -0400 Subject: [PATCH] CRM-17076 future start date not showing for authorize.net --- CRM/Contribute/Form/AbstractEditPayment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/Form/AbstractEditPayment.php b/CRM/Contribute/Form/AbstractEditPayment.php index f2655045d1..13eb42c01a 100644 --- a/CRM/Contribute/Form/AbstractEditPayment.php +++ b/CRM/Contribute/Form/AbstractEditPayment.php @@ -420,7 +420,7 @@ LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_co //only valid processors get display to user if ($this->_mode) { - $this->assign('processorSupportsFutureStartDate', CRM_Financial_BAO_PaymentProcessor::hasPaymentProcessorSupporting(array('supportsFutureRecurStartDate'))); + $this->assign('processorSupportsFutureStartDate', CRM_Financial_BAO_PaymentProcessor::hasPaymentProcessorSupporting(array('FutureRecurStartDate'))); $this->_paymentProcessors = $this->getValidProcessors(); if (!isset($this->_paymentProcessor['id'])) { // if the payment processor isn't set yet (as indicated by the presence of an id,) we'll grab the first one which should be the default -- 2.25.1