Skip to content

Commit

Permalink
Merge pull request #11727 from jitendrapurohit/CRM-21807
Browse files Browse the repository at this point in the history
CRM-21807 - Deleted contacts included by default in Membership and co…
  • Loading branch information
eileenmcnaughton authored Mar 19, 2018
2 parents 1142ce8 + bc39008 commit f4b3565
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Report/Form/Contribute/Detail.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function __construct() {
'fields_defaults' => array('sort_name'),
'fields_excluded' => array('id'),
'fields_required' => array('id'),
'filters_defaults' => array('is_deleted' => FALSE),
'filters_defaults' => array('is_deleted' => 0),
'no_field_disambiguation' => TRUE,
)), array(
'civicrm_email' => array(
Expand Down
5 changes: 5 additions & 0 deletions CRM/Report/Form/Member/Detail.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ public function __construct() {
'title' => ts('Contact Name'),
'operator' => 'like',
),
'is_deleted' => array(
'title' => ts('Is Deleted'),
'default' => 0,
'type' => CRM_Utils_Type::T_BOOLEAN,
),
'id' => array('no_display' => TRUE),
),
'order_bys' => array(
Expand Down

0 comments on commit f4b3565

Please sign in to comment.