From: monishdeb Date: Tue, 11 Aug 2015 19:31:37 +0000 (+0530) Subject: format fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a9629de4438b7c056ef4ba103ed51008b3b36549;p=civicrm-core.git format fix --- 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; }