From 1684bccdd7b88b229a883a605d9c95f73650f0ed Mon Sep 17 00:00:00 2001 From: Pradeep Nayak Date: Tue, 8 Sep 2020 12:42:58 +0100 Subject: [PATCH] Replace & to and in button label --- CRM/Financial/Form/BatchTransaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']); } } -- 2.25.1