From 642b67329c70528721eaff6883fb66b5dbffc805 Mon Sep 17 00:00:00 2001 From: yashodha Date: Wed, 31 Jan 2018 21:01:29 +0530 Subject: [PATCH] minor fix --- CRM/Report/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index f8b5a0662df7..38cb2bd1be9d 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -4375,7 +4375,7 @@ public function addPhoneFromClause($prefix = '', $extra = array()) { */ public function addEmailFromClause($prefix = '', $extra = array()) { // include email field if email column is to be included - if ($this->isTableSelected($prefix .'civicrm_email')) { + if ($this->isTableSelected($prefix . 'civicrm_email')) { $this->_from .= " LEFT JOIN civicrm_email {$this->_aliases[$prefix . 'civicrm_email']} ON ({$this->_aliases[$prefix . 'civicrm_contact']}.id = {$this->_aliases[$prefix . 'civicrm_email']}.contact_id AND