From: Coleman Watts Date: Sun, 16 Nov 2014 03:07:33 +0000 (-0500) Subject: CRM-15603 - Remove extra trailing spaces X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ffa40ba951542e8ef5d57492836808813841a9ad;p=civicrm-core.git CRM-15603 - Remove extra trailing spaces --- diff --git a/CRM/Financial/BAO/ExportFormat.php b/CRM/Financial/BAO/ExportFormat.php index d6105f9dde..2ced603bf8 100644 --- a/CRM/Financial/BAO/ExportFormat.php +++ b/CRM/Financial/BAO/ExportFormat.php @@ -194,7 +194,7 @@ class CRM_Financial_BAO_ExportFormat { $paymentInstrument = array_flip(CRM_Contribute_PseudoConstant::paymentInstrument('label')); $values['payment_instrument_id'] = array_search($values['payment_instrument_id'], $paymentInstrument); } - $details = '

' . ts('Record: ') . $values['title'] . '

' . ts('Description: ') . '

' . ts('Created By: ') . $createdBy . '

' . ts('Created Date: ') . $values['created_date'] . '

' . ts('Last Modified By: ') . $modifiedBy . '

' . ts('Payment Instrument: ') . $values['payment_instrument_id'] . '

'; + $details = '

' . ts('Record:') . ' ' . $values['title'] . '

' . ts('Description:') . '

' . ts('Created By:') . " $createdBy" . '

' . ts('Created Date:') . ' ' . $values['created_date'] . '

' . ts('Last Modified By:') . ' ' . $modifiedBy . '

' . ts('Payment Instrument:') . ' ' . $values['payment_instrument_id'] . '

'; $subject = ''; if (!empty($values['total'])) { $subject .= ts('Total') . '['. CRM_Utils_Money::format($values['total']) .'],';