Skip to content
Snippets Groups Projects
Commit ab847eb6 authored by Dave Greenberg's avatar Dave Greenberg
Browse files

Update Detail.php

Fixed missing space in soft credit stats.
parent ae06920d
Branches
Tags
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment