Skip to content

Commit

Permalink
Merge pull request #13296 from mathavanveda/603_case_summary_report
Browse files Browse the repository at this point in the history
dev/core#603 not set default value yes/no for active relationship filters
  • Loading branch information
yashodha authored Dec 18, 2018
2 parents 68e7328 + 79cc876 commit bdac1a2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CRM/Report/Form/Case/Summary.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,9 @@ public function __construct() {
'is_active' => array(
'title' => ts('Active Relationship?'),
'type' => CRM_Utils_Type::T_BOOLEAN,
'default' => TRUE,
'options' => CRM_Core_SelectValues::boolean(),
//MV dev/core#603, not set default values Yes/No, this cause issue when relationship fields are not selected
// 'default' => TRUE,
'options' => array('' => ts('- Select -')) + CRM_Core_SelectValues::boolean(),
),
),
),
Expand Down

0 comments on commit bdac1a2

Please sign in to comment.