X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FReport%2FForm%2FContribute%2FPCP.php;h=72709a3ea61011a8e4d8cb8559f625c7674e8aa9;hb=29d98e1314e345f1b9044f5359c2d0a67f380d21;hp=695156785be6db71d0634a9e4233465d19fc6580;hpb=b2ac9e9ca74be7f852e37e0dfbf0e77627471c4d;p=civicrm-core.git diff --git a/CRM/Report/Form/Contribute/PCP.php b/CRM/Report/Form/Contribute/PCP.php index 695156785b..72709a3ea6 100644 --- a/CRM/Report/Form/Contribute/PCP.php +++ b/CRM/Report/Form/Contribute/PCP.php @@ -1,5 +1,4 @@ _columns = array( @@ -278,22 +275,22 @@ LEFT JOIN civicrm_contribution_page {$this->_aliases['civicrm_contribution_page' $statistics['counts']['goal_total'] = array( 'title' => ts('Goal Total'), 'value' => $dao->goal_total, - 'type' => CRM_Utils_Type::T_MONEY + 'type' => CRM_Utils_Type::T_MONEY, ); $statistics['counts']['committed_total'] = array( 'title' => ts('Total Committed'), 'value' => $dao->committed_total, - 'type' => CRM_Utils_Type::T_MONEY + 'type' => CRM_Utils_Type::T_MONEY, ); $statistics['counts']['received_total'] = array( 'title' => ts('Total Received'), 'value' => $dao->received_total, - 'type' => CRM_Utils_Type::T_MONEY + 'type' => CRM_Utils_Type::T_MONEY, ); $statistics['counts']['donors_total'] = array( 'title' => ts('Total Donors'), 'value' => $dao->donors_total, - 'type' => CRM_Utils_Type::T_INT + 'type' => CRM_Utils_Type::T_INT, ); return $statistics; }