From cbcfeadb3d49d50ee90f0f176116490ca82c072f Mon Sep 17 00:00:00 2001 From: eileenmcnaugton Date: Mon, 15 Feb 2016 13:13:05 +1300 Subject: [PATCH] CRM-17718 installments should NOT be mandatory on recur edit page - this change is in 4.7 already --- CRM/Contribute/Form/UpdateSubscription.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/Form/UpdateSubscription.php b/CRM/Contribute/Form/UpdateSubscription.php index 63cbc3b78d..c07de93205 100644 --- a/CRM/Contribute/Form/UpdateSubscription.php +++ b/CRM/Contribute/Form/UpdateSubscription.php @@ -158,7 +158,7 @@ class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form { TRUE, 'currency', $this->_subscriptionDetails->currency, TRUE ); - $this->add('text', 'installments', ts('Number of Installments'), array('size' => 20), TRUE); + $this->add('text', 'installments', ts('Number of Installments'), array('size' => 20), FALSE); if ($this->_donorEmail) { $this->add('checkbox', 'is_notify', ts('Notify Contributor?')); -- 2.25.1