Skip to content

Commit

Permalink
dev/core#135 Fix first of 2 non numeric issues in CRM_Batch_form_entr…
Browse files Browse the repository at this point in the history
…yTest
  • Loading branch information
seamuslee001 committed May 23, 2018
1 parent b849bd9 commit 5c6f56b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Batch/Form/Entry.php
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ private function processMembership(&$params) {
}
}

$params['actualBatchTotal'] += $value['total_amount'];
$params['actualBatchTotal'] += (float) $value['total_amount'];

unset($value['financial_type']);
unset($value['payment_instrument']);
Expand Down

0 comments on commit 5c6f56b

Please sign in to comment.