From 074dd7663fb0f5e50f2475636e1726715c2357d9 Mon Sep 17 00:00:00 2001 From: eileen Date: Mon, 30 Jan 2017 20:55:12 +1300 Subject: [PATCH] Fix mis-cased class ref --- CRM/Report/Form.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 2c4b691892..62000041db 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -4268,7 +4268,7 @@ LEFT JOIN civicrm_contact {$field['alias']} ON {$field['alias']}.id = {$this->_a $rowLabels = array(); foreach ($rowValues as $rowValue) { if ($rowValue) { - $rowLabels[] = CRM_Core_Pseudoconstant::getLabel('CRM_Contact_BAO_Contact', $fieldName, $rowValue); + $rowLabels[] = CRM_Core_PseudoConstant::getLabel('CRM_Contact_BAO_Contact', $fieldName, $rowValue); } } $rows[$rowNum]['civicrm_contact_' . $fieldName] = implode(', ', $rowLabels); @@ -4667,7 +4667,7 @@ LEFT JOIN civicrm_contact {$field['alias']} ON {$field['alias']}.id = {$this->_a CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes); if (empty($financialTypes)) { $contFTs = "0"; - $liFTs = implode(',', array_keys(CRM_Contribute_Pseudoconstant::financialType())); + $liFTs = implode(',', array_keys(CRM_Contribute_PseudoConstant::financialType())); } else { $contFTs = $liFTs = implode(',', array_keys($financialTypes)); @@ -4874,7 +4874,7 @@ LEFT JOIN civicrm_contact {$field['alias']} ON {$field['alias']}.id = {$this->_a return implode(', ', array_filter($labels)); } - /* + /** * Add statistics columns. * * If a group by is in play then add columns for the statistics fields. -- 2.25.1