From a9629de4438b7c056ef4ba103ed51008b3b36549 Mon Sep 17 00:00:00 2001 From: monishdeb Date: Wed, 12 Aug 2015 01:01:37 +0530 Subject: [PATCH] format fix --- CRM/Member/Form/MembershipRenewal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Member/Form/MembershipRenewal.php b/CRM/Member/Form/MembershipRenewal.php index 286fc13c7f..2943018e35 100644 --- a/CRM/Member/Form/MembershipRenewal.php +++ b/CRM/Member/Form/MembershipRenewal.php @@ -296,7 +296,7 @@ class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form { $taxAmount = NULL; $totalAmount = CRM_Utils_Array::value('minimum_fee', $values); if (CRM_Utils_Array::value($values['financial_type_id'], $taxRates)) { - $taxAmount = ($taxRate/100) * CRM_Utils_Array::value('minimum_fee', $values); + $taxAmount = ($taxRate / 100) * CRM_Utils_Array::value('minimum_fee', $values); $totalAmount = $totalAmount + $taxAmount; } -- 2.25.1