From: Pradeep Nayak Date: Tue, 8 Sep 2020 11:42:58 +0000 (+0100) Subject: Replace & to and in button label X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=1684bccdd7b88b229a883a605d9c95f73650f0ed;p=civicrm-core.git Replace & to and in button label --- diff --git a/CRM/Financial/Form/BatchTransaction.php b/CRM/Financial/Form/BatchTransaction.php index 20848b58ec..ef90e96c02 100644 --- a/CRM/Financial/Form/BatchTransaction.php +++ b/CRM/Financial/Form/BatchTransaction.php @@ -87,7 +87,7 @@ class CRM_Financial_Form_BatchTransaction extends CRM_Contribute_Form_Search { if (CRM_Batch_BAO_Batch::checkBatchPermission('close', $this->_values['created_id'])) { $this->add('xbutton', 'close_batch', ts('Close Batch'), ['type' => 'submit']); if (CRM_Batch_BAO_Batch::checkBatchPermission('export', $this->_values['created_id'])) { - $this->add('xbutton', 'export_batch', ts('Close & Export Batch'), ['type' => 'submit']); + $this->add('xbutton', 'export_batch', ts('Close and Export Batch'), ['type' => 'submit']); } }