From c12b5af42936e85688608c622d48bfe8a21f1383 Mon Sep 17 00:00:00 2001 From: KarinG Date: Thu, 20 Apr 2017 19:52:20 -0600 Subject: [PATCH] Fix typo. --- CRM/Contribute/Form/Task/Invoice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/Form/Task/Invoice.php b/CRM/Contribute/Form/Task/Invoice.php index 071b88c665..ccee55e0a0 100644 --- a/CRM/Contribute/Form/Task/Invoice.php +++ b/CRM/Contribute/Form/Task/Invoice.php @@ -333,7 +333,7 @@ class CRM_Contribute_Form_Task_Invoice extends CRM_Contribute_Form_Task { )); $amountPaid = 0; foreach($resultPayments['values'] as $singlePayment) { - // Only count payments that have been (status =) completed + // Only count payments that have been (status =) completed. if ($singlePayment['status_id'] == 1) { $amountPaid += $singlePayment['total_amount']; } -- 2.25.1