From: Dave Greenberg Date: Fri, 19 Dec 2014 23:22:01 +0000 (-0800) Subject: CRM-15701 - Fix form rule error. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7f6a92efee71bf8eb1afc47dfc4f04639fce6fbd;p=civicrm-core.git CRM-15701 - Fix form rule error. ---------------------------------------- * CRM-15701: https://issues.civicrm.org/jira/browse/CRM-15701 --- diff --git a/CRM/Batch/Form/Entry.php b/CRM/Batch/Form/Entry.php index 126034e90c..323f3b74b0 100755 --- a/CRM/Batch/Form/Entry.php +++ b/CRM/Batch/Form/Entry.php @@ -302,7 +302,7 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form { $duplicateRows = array_keys($params["open_pledges"], $value); if (count($duplicateRows) > 1) { foreach ($duplicateRows as $key) { - $errors["open_pledges[$key]"] = ts('Open Pledge can not be same'); + $errors["open_pledges[$key]"] = ts('You can not record two payments for the same pledge in a single batch.'); } } }