From ab847eb6eabe33dc11a931bc5cafa7e7380a26d7 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Mon, 30 Sep 2013 15:23:41 -0700 Subject: [PATCH] Update Detail.php Fixed missing space in soft credit stats. --- CRM/Report/Form/Contribute/Detail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form/Contribute/Detail.php b/CRM/Report/Form/Contribute/Detail.php index 08bea47413..e70ed21ebb 100644 --- a/CRM/Report/Form/Contribute/Detail.php +++ b/CRM/Report/Form/Contribute/Detail.php @@ -550,7 +550,7 @@ SELECT COUNT(contribution_soft_civireport.amount ) as count, GROUP BY {$this->_aliases['civicrm_contribution']}.currency"; $dao = CRM_Core_DAO::executeQuery($sql); while ($dao->fetch()) { - $totalAmount[] = CRM_Utils_Money::format($dao->amount, $dao->currency)."(".$dao->count.")"; + $totalAmount[] = CRM_Utils_Money::format($dao->amount, $dao->currency)." (".$dao->count.")"; $average[] = CRM_Utils_Money::format($dao->avg, $dao->currency); $count += $dao->count; } -- 2.25.1