From: eileen Date: Tue, 7 Feb 2017 03:22:26 +0000 (+1300) Subject: CRM-19815 fix for e-notice regression from setting uniquename on check_number X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0bc4bfb30c7b2c94a970a8872b89922736f1147c;hp=4ac958d18f497183119bf49c6bb8604bfcce4018;p=civicrm-core.git CRM-19815 fix for e-notice regression from setting uniquename on check_number --- diff --git a/CRM/Contribute/Form/Contribution.php b/CRM/Contribute/Form/Contribution.php index 450c1bac94..1f8b49c513 100644 --- a/CRM/Contribute/Form/Contribution.php +++ b/CRM/Contribute/Form/Contribution.php @@ -776,7 +776,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP if ($this->_online) { $this->assign('hideCalender', TRUE); } - $checkNumber = $this->add('text', 'check_number', ts('Check Number'), $attributes['check_number']); + $checkNumber = $this->add('text', 'check_number', ts('Check Number'), $attributes['contribution_check_number']); $this->addDateTime('receipt_date', ts('Receipt Date'), FALSE, array('formatType' => 'activityDateTime')); $this->addDateTime('cancel_date', ts('Cancelled / Refunded Date'), FALSE, array('formatType' => 'activityDateTime'));