Skip to content

Commit

Permalink
Merge pull request #12190 from seamuslee001/dev_ore_135_a
Browse files Browse the repository at this point in the history
dev/core#135 Fix first of 2 non numeric issues in CRM_Batch_form_entr…
  • Loading branch information
seamuslee001 authored May 24, 2018
2 parents 185331b + 5c6f56b commit a96624f
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 a96624f

Please sign in to comment.