From 19c31ac4a6ff073fbd9c15b33ec00be9fd4a9dfb Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Wed, 8 Jan 2014 12:27:51 -0800 Subject: [PATCH] CRM-14034 - additional fix. ---------------------------------------- * CRM-14034: Editing a contribution from a PCP gets an error saying "soft credit amount cannot be more than the total amount." http://issues.civicrm.org/jira/browse/CRM-14034 --- CRM/Contribute/Form/SoftCredit.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CRM/Contribute/Form/SoftCredit.php b/CRM/Contribute/Form/SoftCredit.php index 2b3b9b12b1..7d17614088 100644 --- a/CRM/Contribute/Form/SoftCredit.php +++ b/CRM/Contribute/Form/SoftCredit.php @@ -94,8 +94,7 @@ class CRM_Contribute_Form_SoftCredit { // Tell tpl to hide soft credit field if contribution is linked directly to a PCP Page if (CRM_Utils_Array::value('pcp_made_through_id', $form->_values)) { $form->assign('pcpLinked', 1); - } - + } } /** -- 2.25.1