Replace & to and in button label
authorPradeep Nayak <pradpnayak@gmail.com>
Tue, 8 Sep 2020 11:42:58 +0000 (12:42 +0100)
committerPradeep Nayak <pradpnayak@gmail.com>
Fri, 11 Sep 2020 17:43:36 +0000 (18:43 +0100)
CRM/Financial/Form/BatchTransaction.php

index 20848b58ecae0de326618eb1771b00d8ab0b7591..ef90e96c026ad5536fbabb4a7e96297edda48fd6 100644 (file)
@@ -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']);
       }
     }