Skip to content

Commit

Permalink
Merge pull request #6769 from monishdeb/CRM-17191
Browse files Browse the repository at this point in the history
CRM-17246 fix - Contact name showing in Contribution summary report
  • Loading branch information
monishdeb committed Sep 18, 2015

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 3205fcd + ac58d43 commit acf6be7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CRM/Report/Form/Contribute/Summary.php
Original file line number Diff line number Diff line change
@@ -60,7 +60,15 @@ public function __construct() {
$this->_columns = array(
'civicrm_contact' => array(
'dao' => 'CRM_Contact_DAO_Contact',
'fields' => $this->getBasicContactFields(),
'fields' => array_merge(
$this->getBasicContactFields(),
array(
'sort_name' => array(
'title' => ts('Contact Name'),
'no_repeat' => TRUE,
),
)
),
'grouping' => 'contact-fields',
'group_bys' => array(
'id' => array('title' => ts('Contact ID')),

0 comments on commit acf6be7

Please sign in to comment.