X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FReport%2FForm%2FMembership%2FSummary.php;h=de12e54c119f66c2cac64a923fdcddaab3e28957;hb=dc61ee93168cacf5ae0025cd1dba1e2ad4dd1014;hp=34c3a77e3b9154bd8a2dcd42273aed9243160b51;hpb=01f7363f74d44b4ff35161c02d7975b7993a2863;p=civicrm-core.git diff --git a/CRM/Report/Form/Membership/Summary.php b/CRM/Report/Form/Membership/Summary.php index 34c3a77e3b..de12e54c11 100644 --- a/CRM/Report/Form/Membership/Summary.php +++ b/CRM/Report/Form/Membership/Summary.php @@ -100,7 +100,7 @@ class CRM_Report_Form_Membership_Summary extends CRM_Report_Form { 'membership_type_id' => ['title' => ts('Membership Type')], ], 'filters' => [ - 'join_date' => ['type' => CRM_Utils_Type::T_DATE], + 'membership_join_date' => ['type' => CRM_Utils_Type::T_DATE], ], ], 'civicrm_address' => [ @@ -334,15 +334,15 @@ LEFT JOIN civicrm_contribution {$this->_aliases['civicrm_contribution']} if (!empty($this->_params['charts'])) { foreach ([ - 'receive_date', - $this->_interval, - 'value', - ] as $ignore) { + 'receive_date', + $this->_interval, + 'value', + ] as $ignore) { unset($graphRows[$ignore][$count - 1]); } // build chart. - CRM_Utils_OpenFlashChart::chart($graphRows, $this->_params['charts'], $this->_interval); + CRM_Utils_Chart::chart($graphRows, $this->_params['charts'], $this->_interval); } parent::endPostProcess(); }