From f91ff431af4bf0ce07d2b488da5621b72cec9c69 Mon Sep 17 00:00:00 2001 From: Jon goldberg Date: Thu, 5 Feb 2015 21:18:20 -0500 Subject: [PATCH] CRM-15920 - CiviReport - remove debug statements --- CRM/Report/Form/Member/Detail.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/CRM/Report/Form/Member/Detail.php b/CRM/Report/Form/Member/Detail.php index f71767a3e0..9610569eba 100644 --- a/CRM/Report/Form/Member/Detail.php +++ b/CRM/Report/Form/Member/Detail.php @@ -401,10 +401,8 @@ class CRM_Report_Form_Member_Detail extends CRM_Report_Form { $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus(); $paymentInstruments = CRM_Contribute_PseudoConstant::paymentInstrument(); - CRM_Core_Error::debug('noRepeats',$this->_noRepeats); $repeatFound = FALSE; foreach ($rows as $rowNum => $row) { - CRM_Core_Error::debug('repeatFound',$repeatFound . " " . $rowNum); if ($repeatFound == FALSE || $repeatFound < $rowNum - 1 ) { @@ -414,7 +412,6 @@ class CRM_Report_Form_Member_Detail extends CRM_Report_Form { if (!empty($this->_noRepeats) && $this->_outputMode != 'csv') { // not repeat contact display names if it matches with the one // in previous row - CRM_Core_Error::debug('checklist',$checkList); foreach ($row as $colName => $colVal) { if (in_array($colName, $this->_noRepeats) && $rowNum > 0 -- 2.25.1